Skip to content

Bumped to v0.1.6

Bumped to v0.1.6 #5

Workflow file for this run

name: Quick Test
on:
push:
paths:
- 'src/**'
- 'test/**'
- 'package.json'
- 'tsconfig.json'
- 'webpack.config.js'
pull_request:
jobs:
quick-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run compile
- run: npm run package
- run: npm test