Skip to content

Bump @types/node from 18.19.26 to 20.11.30 #684

Bump @types/node from 18.19.26 to 20.11.30

Bump @types/node from 18.19.26 to 20.11.30 #684

Workflow file for this run

name: Build Status
on:
workflow_dispatch:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
env:
CI: true
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18, 20]
experimental: [false]
include:
- os: ubuntu-latest
node-version: latest
experimental: true
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
- run: npm update
- run: npm ci
- run: npm test
- name: Codecov
uses: codecov/codecov-action@v3.1.4
with:
verbose: true
lint:
runs-on: ubuntu-latest
env:
CI: true
strategy:
matrix:
node-version: [18, 20]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run lint