Skip to content

Commit

Permalink
ci: build checks
Browse files Browse the repository at this point in the history
  • Loading branch information
Shenon69 committed Apr 28, 2024
1 parent 710cc5e commit 17ba436
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Build and Check

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

jobs:
build:
runs-on: ubuntu-latest

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

- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18

- name: Install dependencies 📦
run: yarn

- name: Build Next.js app 🛠️
run: yarn build

0 comments on commit 17ba436

Please sign in to comment.