Skip to content

Bump eslint-plugin-mocha from 11.0.0 to 11.1.0 #1967

Bump eslint-plugin-mocha from 11.0.0 to 11.1.0

Bump eslint-plugin-mocha from 11.0.0 to 11.1.0 #1967

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@49933ea5288caeca8642d1e84afbd3f7d6820020 # 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