chore: Bump to [email protected] #5493
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test | ||
# On every pull request, but only on push to master | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- dev | ||
- release | ||
pull_request: | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [20] | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: volta-cli/action@v4 | ||
- name: Set up Node ${{ matrix.node-version }} | ||
uses: actions/[email protected] | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: Bootstrap | ||
run: | | ||
yarn | ||
- name: Bootstrap | ||
run: | | ||
yarn bootstrap | ||
- name: Run browser tests (generate coverage) | ||
run: | | ||
yarn run test-cover | ||
- name: Run node tests | ||
run: | | ||
yarn run test-node | ||
- name: Run lint | ||
run: | | ||
yarn lint | ||
- name: Build website | ||
run: | | ||
cd website | ||
yarn install | ||
yarn build | ||
- name: Coveralls | ||
if: matrix.node-version == 18 | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} |