Skip to content

Workflow file for this run

run-name: build
on:
push:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install node 18
uses: actions/setup-node@v3
with:
node-version: '16'
- name: npm install
run: npm install
- name: eslint
run: npm run eslint
- name: prettier-check
run: npm run prettier-check
- name: test
run: npm run test -- --failTaskOnError --suppressPassed