Skip to content

Commit

Permalink
add ci workflow
Browse files Browse the repository at this point in the history
ubermanu committed Dec 22, 2023
1 parent 67088cf commit 0edb3fa
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: continuous-integration

on:
push:
branches: ["main"]
workflow_dispatch:

jobs:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: pnpm/action-setup@v2
with:
version: 8

- uses: actions/setup-node@v4
with:
node-version: 21
registry-url: 'https://registry.npmjs.org'
cache: 'pnpm'

- run: pnpm i
- run: pnpm build
- run: pnpm svelte-check

0 comments on commit 0edb3fa

Please sign in to comment.