Skip to content

Bump @types/node from 20.12.8 to 20.12.11 #987

Bump @types/node from 20.12.8 to 20.12.11

Bump @types/node from 20.12.8 to 20.12.11 #987

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 18, 16]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install, lint, build, test, cover
run: |
npm install
npm run lint
npm run build
npm run test
npm run cover
- name: Coveralls
uses: coverallsapp/github-action@1.1.3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}