Skip to content

Bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.4.1 #3362

Bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.4.1

Bump @typescript-eslint/eslint-plugin from 5.61.0 to 6.4.1 #3362

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request: {}
concurrency:
group: ci-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 10
env:
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
steps:
- uses: actions/checkout@v3
- uses: volta-cli/[email protected]
- run: npm ci
- run: npm run test
deployment:
name: 'Deployment'
runs-on: ubuntu-latest
timeout-minutes: 10
needs: [test]
if: github.ref == 'refs/heads/master'
environment:
name: production
url: https://bobisjan.com
env:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
steps:
- uses: actions/checkout@v3
- uses: volta-cli/[email protected]
- run: npm ci
- run: npm run deploy