Skip to content

Commit

Permalink
Added CI build check.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuinox committed Nov 15, 2023
1 parent eff76fd commit e940c1c
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: write
pages: write
id-token: write
deployments: write

jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '19'

- name: Install dependencies
run: npm ci

- name: Build the app
run: npm run build

0 comments on commit e940c1c

Please sign in to comment.