chore(deps): bump micromatch from 4.0.5 to 4.0.8 in /website #5541
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 | |
steps: | |
- uses: actions/[email protected] | |
- uses: volta-cli/action@v4 | |
- name: Install dependencies | |
run: | | |
yarn install | |
- name: Build | |
run: | | |
yarn run 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 run lint | |
- name: Build website | |
run: | | |
cd website ; yarn install ; yarn run build | |
- name: Coveralls | |
if: matrix.node-version == 18 | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} |