Skip to content

chore: use TypeScript 5 #16

chore: use TypeScript 5

chore: use TypeScript 5 #16

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: use node 18
uses: actions/setup-node@v2
with:
node-version: '18'
- run: npm ci
- run: npm run lint
- run: npm run compile
- run: npm test