Skip to content

Bump @types/node from 18.16.0 to 20.2.5 #91

Bump @types/node from 18.16.0 to 20.2.5

Bump @types/node from 18.16.0 to 20.2.5 #91

Workflow file for this run

name: Build & Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install deps and build package
run: yarn install
- name: Build
run: yarn build
- name: Test
run: yarn test