Skip to content

Bump @types/node from 20.11.30 to 20.12.2 #1199

Bump @types/node from 20.11.30 to 20.12.2

Bump @types/node from 20.11.30 to 20.12.2 #1199

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FORCE_COLOR: 3
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [16, 18]
steps:
- name: Checkout Repo
uses: actions/checkout@v4.1.2
- name: Install Node
uses: actions/setup-node@v4.0.2
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
- run: npm run package