Skip to content

update GitHub actions #18

update GitHub actions

update GitHub actions #18

Workflow file for this run

name: Test Package
on: push
env:
NODE_VERSION: 20
jobs:
test:
runs-on: ubuntu-22.04
timeout-minutes: 15
steps:
- uses: actions/checkout@v4
- uses: aboutbits/github-actions-node/setup-and-install@v2
with:
node-version: ${{ env.NODE_VERSION }}
- run: npm run lint
- run: npm run typecheck
- run: npm run test