Skip to content

Merge pull request #22 from INIAD-ts/fix/#21 #55

Merge pull request #22 from INIAD-ts/fix/#21

Merge pull request #22 from INIAD-ts/fix/#21 #55

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
- uses: actions/cache@v4
id: npm-cache
with:
path: 'node_modules'
key: npm-${{ hashFiles('package-lock.json') }}
- run: npm install
if: steps.npm-cache.outputs.cache-hit != 'true'
- run: npm run lint
- run: npm run typecheck