Skip to content

Workflow file for this run

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

Check failure on line 47 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 47
- 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 }}