chore(deps-dev): bump @typescript-eslint/eslint-plugin from 6.1.0 to 6.8.0 #541
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 (Jest) | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# checkout | |
- name: Checkout repository code | |
uses: actions/checkout@v3 | |
# install | |
- name: Setup PNPM | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8.6.9 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: Adjust fixture permissions | |
run: chmod a-r ./src/api/migrations/__fixtures__/migrations-unreadable | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
# test | |
- name: Run tests | |
run: pnpm test |