Skip to content

Bump @typescript-eslint/eslint-plugin from 8.49.0 to 8.51.0 #2191

Bump @typescript-eslint/eslint-plugin from 8.49.0 to 8.51.0

Bump @typescript-eslint/eslint-plugin from 8.49.0 to 8.51.0 #2191

Workflow file for this run

name: Lint & Test
on:
push:
branches:
- main
pull_request:
permissions: read-all
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v3.0.2
with:
ref: main
lfs: true
- name: Setup Node
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v3.2.0
with:
node-version-file: '.nvmrc'
cache: npm
cache-dependency-path: package-lock.json
- name: Install dependencies
run: npm ci
env:
CI: true
- name: Lint
run: npm run lint:js
- name: Test Firebase Function
run: cd packages/functions && npm run test test/**.test.ts