Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.5.0 #621
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: Node.js CI | |
on: | |
push: | |
branches: [main] | |
pull_request_target: | |
types: [opened, synchronize, reopened] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
types: [opened, synchronize, reopened] | |
paths: | |
- .github/workflows/ci.yml | |
concurrency: ${{ github.workflow }}--${{ github.ref }} | |
jobs: | |
CI: | |
runs-on: ubuntu-latest | |
strategy: | |
# We do not want to run CRUD tests in parallel | |
max-parallel: 1 | |
matrix: | |
node-version: [16.x, 18.x, 19.x] | |
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/ | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha || github.sha }} | |
- name: Decrypt keyfile | |
run: ./.github/scripts/decrypt_secret.sh | |
env: | |
KEYFILE_PASSPHRASE: ${{secrets.KEYFILE_PASSPHRASE}} | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: Install dependencies | |
run: corepack yarn install | |
- name: Build | |
run: corepack yarn build | |
- name: Run linters | |
run: corepack yarn lint | |
- name: Run tests | |
run: corepack yarn test | |
env: | |
AWS_BUCKET: ${{secrets.AWS_BUCKET}} | |
AWS_ACCESS_KEY_ID: ${{secrets.AWS_ACCESS_KEY_ID}} | |
AWS_SECRET_ACCESS_KEY: ${{secrets.AWS_SECRET_ACCESS_KEY}} | |
AWS_REGION: ${{secrets.AWS_REGION}} |