Skip to content

ci: ui workflow

ci: ui workflow #1

Workflow file for this run

name: UI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build_site:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: npm install
- name: Code Lint
run: npm run lint
- name: Svelte Check
run: npm run check
- name: Unit Test
run: npm run test:unit
- name: Integration Test
run: npm run test:integration