Skip to content

fix

fix #8

Workflow file for this run

name: CI
on:
push:
jobs:
frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: 19
- name: Cache node_modules
uses: actions/[email protected]
with:
path: |
./node_modules
key: ${{ runner.os }}-cargo-${{ hashFiles('package-lock.json') }}
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
- name: Lint
run: npm run lint
- name: Format
run: npx prettier --check src