Skip to content

Commit

Permalink
ci: add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sgoudham committed Sep 8, 2024
1 parent 338a724 commit b14c59f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
build-sass:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: "lts/*"
cache: "npm"

- name: Build
run: |
npm ci
npm run build

0 comments on commit b14c59f

Please sign in to comment.