Skip to content

Bump node-fetch from 2.6.1 to 2.7.0 in /functions #98

Bump node-fetch from 2.6.1 to 2.7.0 in /functions

Bump node-fetch from 2.6.1 to 2.7.0 in /functions #98

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
- name: Cache dependencies
uses: actions/cache@v3
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run unit tests
run: yarn test
- name: Run type checks (TypeScript)
run: yarn tsc
- name: Run linter (ESLint)
run: yarn lint