Skip to content

Build Visualizer (#11) #22

Build Visualizer (#11)

Build Visualizer (#11) #22

Workflow file for this run

name: PR check workflows
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
name: Node ${{ matrix.node }} sample
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install dependencies
run: npm install
- name: lint check
run: npm run lint
- name: prettier check
run: npm run prettier:list
- name: type check
run: npm run tsc
- name: build
run: npm run build