Skip to content

fix(build): bump tsconfig major version (#394) #1118

fix(build): bump tsconfig major version (#394)

fix(build): bump tsconfig major version (#394) #1118

Workflow file for this run

name: Test
"on":
push:
branches:
- main
- dependabot/npm_and_yarn/**
pull_request:
types:
- opened
- synchronize
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node_version:
- 18
- 20
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node_version }}
cache: npm
- name: Install
run: npm ci
- name: Test
run: npm test