Skip to content

Commit

Permalink
CI gh action
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelHolley committed Jan 19, 2025
1 parent e6c149b commit 2079985
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
pull_request:
branches: [master]

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

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- uses: pnpm/action-setup@v4
name: Install pnpm & dependencies
with:
version: 9
run_install: true

- name: Build production bundle
run: pnpm build

0 comments on commit 2079985

Please sign in to comment.