Merge pull request #148 from mogeko/dependabot/npm_and_yarn/devdepend… #372
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: | |
push: | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Run Tests and Generate Coverage Report | |
runs-on: ubuntu-latest | |
env: | |
TURBO_FORCE: true | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up pnpm | |
uses: pnpm/[email protected] | |
- name: Set up Node.js | |
uses: actions/[email protected] | |
with: | |
node-version-file: package.json | |
cache: "pnpm" | |
- run: pnpm install -rw --frozen-lockfile | |
- run: pnpm biome ci --reporter=github | |
- run: pnpm run cov |