Skip to content

feature: added SST to project #15

feature: added SST to project

feature: added SST to project #15

Workflow file for this run

name: ci
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
lint:
name: Check for build and type issues
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: install node
uses: actions/setup-node@v3
with:
node-version: 20.15.3
- name: Install dependencies
run: npm install
# use astro check for issues
- name: Run check
run: npm astro check
# ensure build works
- name: Run build
run: npm build