Skip to content

Allow slider step values in SoundPlugin to be changed #242

Allow slider step values in SoundPlugin to be changed

Allow slider step values in SoundPlugin to be changed #242

Workflow file for this run

name: build
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'dist/**'
- 'typings/**'
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v1
- name: Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
npm ci
env:
CI: true
- name: build
run: |
npm run build
env:
CI: true
- name: test
run: |
npm run github-test
env:
CI: true