Instructor and Admin Forms #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Quality | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install `pnpm` via Corepack | |
run: corepack enable | |
- name: Get `pnpm` Store Directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- uses: actions/cache@v3 | |
name: Setup `pnpm` Cache | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install Dependencies | |
run: pnpm install | |
- name: Check Formatters | |
run: pnpm fmt | |
- name: Check HTML | |
run: pnpm lint:html | |
- name: Check CSS | |
run: pnpm lint:css | |
- name: Synchronize SvelteKit | |
run: pnpm sync | |
- name: Check JavaScript | |
run: pnpm lint:js | |
- name: Check Svelte | |
run: pnpm lint:svelte | |
- name: Build Website | |
run: pnpm build |