Skip to content

changes imposed by npm run format #521

changes imposed by npm run format

changes imposed by npm run format #521

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: npm install, build, and test
run: |
npm install
npm run format-check
npm run build
npm test
env:
CI: true