Skip to content

Automate release

Automate release #19

Workflow file for this run

name: Test & Build
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Test with Coverage
run: yarn test --coverage --coverageReporters=lcov
- name: ESLint
run: yarn eslint
- name: Report Coverage
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Build Dist
run: yarn build
- name: Bundlewatch
run: npx bundlewatch
# - name: Build Docs
# run: yarn build:docs