Skip to content

New: Add properties setters and getters (#93) #258

New: Add properties setters and getters (#93)

New: Add properties setters and getters (#93) #258

Workflow file for this run

name: Build and test
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: "18.x"
- name: 'Install'
run: npm ci
- name: 'Lint'
run: npm run lint
- name: 'Build'
run: npm run build:release
- name: 'Test'
run: npm run test