Skip to content

First draft of a working terminal. #5

First draft of a working terminal.

First draft of a working terminal. #5

Workflow file for this run

name: frontend-build
on:
push:
branches:
- main
pull_request:
jobs:
astro-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-node@v4
with:
node-version-file: frontend/.node-version
cache: npm
cache-dependency-path: frontend/package-lock.json
- run: npm ci
- run: npx astro check
- run: npx astro build