Skip to content

Refactor backend (#74) #151

Refactor backend (#74)

Refactor backend (#74) #151

Workflow file for this run

name: Svelte CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "17.x"
cache: "npm"
- run: npm ci
- run: npm run build --if-present
- name: Validate generated files are up-to-date
run: npm run generate-check
- run: npm run check
- run: npm run test
- run: npx prettier --check "**/*.{svelte,ts}"