Skip to content

Merge pull request #86 from kjirou/upgrade_packages #9

Merge pull request #86 from kjirou/upgrade_packages

Merge pull request #86 from kjirou/upgrade_packages #9

Workflow file for this run

name: run-checks
on:
push:
branches:
- main
pull_request:
jobs:
run-checks:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
- uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
- run: npm ci
- run: npm run tsc
- run: npm run test