Skip to content

- fix error

- fix error #2

Workflow file for this run

name: testing, buildin
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
pipeline:
runs-on: macos-latest
strategy:
matrix:
node-version: [ 17.x ]
steps:
- uses: actions/checkout@v2
- name: Staring Node.js ${{ matrix.node-version}}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version}}
- name: install modules
run: npm install
- name: build production project
run: npm run build:prod
- name: unit testing
run: npm run unit