Skip to content

Update dependency @types/node to v20.12.9 #1850

Update dependency @types/node to v20.12.9

Update dependency @types/node to v20.12.9 #1850

Workflow file for this run

name: Node CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
platform:
- ubuntu-latest
node-version:
- 16.x
- 14.x
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: yarn install, lint, and test
run: |
yarn install --mode=skip-build
yarn build
yarn test
env:
CI: true