Skip to content

Bump @types/node from 20.11.14 to 20.12.7 #200

Bump @types/node from 20.11.14 to 20.12.7

Bump @types/node from 20.11.14 to 20.12.7 #200

Workflow file for this run

name: nodejs
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- uses: actions/cache@v4
with:
path: node-modules
key: node-modules-${{ hashFiles('yarn.lock') }}
- run: yarn install --frozen-lockfile
- run: yarn build
- run: yarn lint:ci