Skip to content

lint fix and change log #208

lint fix and change log

lint fix and change log #208

Workflow file for this run

on: [push]
name: "CI Node"
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
node-versions: [16, 18, 19, 20]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-versions }}
- name: NPM Install
working-directory: ./ui
run: npm install
- name: Lint, build/export
working-directory: ./ui
run: |
npm run lint
npm run export