Skip to content

Bump @types/node-fetch from 2.6.2 to 2.6.11 #39

Bump @types/node-fetch from 2.6.2 to 2.6.11

Bump @types/node-fetch from 2.6.2 to 2.6.11 #39

Workflow file for this run

name: CI
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch: {}
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: pnpm/action-setup@v2
name: Install pnpm
- run: pnpm install
name: Install dependencies
- run: pnpm check-version-mismatch
name: Check dependencies are consistent
- run: pnpm run build
name: Build
- run: pnpm run test
name: Build
- run: pnpm run check-format
name: Check formatting
- run: pnpm run lint
name: Lint
- run: |
git status --porcelain
git diff --no-ext-diff --quiet --exit-code
name: Check not out of date generated files