Skip to content

Commit

Permalink
ci: create workflow to build the project
Browse files Browse the repository at this point in the history
  • Loading branch information
SpraxDev committed Aug 28, 2024
1 parent 0de7988 commit e95595d
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build

on:
push:
branches:
- full-recode
- main
pull_request:
branches:
- full-recode
- main

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

- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm

- name: Install project dependencies
run: npm ci
- name: Build the project
run: npm run build

0 comments on commit e95595d

Please sign in to comment.