Skip to content

bump to 0.5.0

bump to 0.5.0 #5

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Cache node_modules
uses: actions/cache@v4
with:
path: "node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('package-lock.json') }}
- name: Install
run: npm install
- name: Build
run: npm run build
env:
NODE_OPTIONS: --max_old_space_size=4096
- name: Test
id: test
run: npm test