Skip to content

Bump eslint from 9.16.0 to 9.17.0 #1791

Bump eslint from 9.16.0 to 9.17.0

Bump eslint from 9.16.0 to 9.17.0 #1791

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v3.0.2
with:
ref: main
lfs: true
- name: Setup Node
uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # 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