Skip to content

Bump @types/node from 20.14.10 to 20.14.11 #1184

Bump @types/node from 20.14.10 to 20.14.11

Bump @types/node from 20.14.10 to 20.14.11 #1184

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12, 14, 16]
steps:
- name: Check out repo
uses: actions/checkout@v4.1.7
- name: Install Node
uses: actions/setup-node@v4.0.3
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm test
- run: npm run build
- run: npm run package