Skip to content

show descriptions

show descriptions #25

Workflow file for this run

name: Main
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [ 16, 18 ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js $${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: npm install and build
run: |
cp config-default.js config.js
npm install
npm run build