Skip to content

Commit 902b515

Browse files
authored
Merge pull request #6 from MeepleProfessionals/main
Fix build and setup GHA
2 parents 0610fd4 + 143eb6d commit 902b515

File tree

3 files changed

+1062
-669
lines changed

3 files changed

+1062
-669
lines changed

.github/workflows/build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v4
15+
16+
- name: Set up Node.js
17+
uses: actions/setup-node@v4
18+
with:
19+
node-version: "20"
20+
21+
- name: Install dependencies
22+
run: npm install
23+
24+
- name: Build project
25+
run: npm run build

0 commit comments

Comments
 (0)