chore: upgrade all dependencies to latest versions #521
Workflow file for this run
This file contains hidden or 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: build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: Build & test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Install Node | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: 20 | |
| # Install & build & test: | |
| - run: corepack enable | |
| - run: yarn install | |
| - run: yarn npm audit --environment production | |
| - run: yarn run build | |
| # Coverage report | |
| - name: Coveralls GitHub Action | |
| uses: coverallsapp/github-action@v1.1.2 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |