Skip to content

Commit

Permalink
Added GH action. Closes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
aliirz committed Dec 3, 2024
1 parent 3e07671 commit f2450e0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Build Check

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build project
run: npm run build

0 comments on commit f2450e0

Please sign in to comment.