Skip to content

Commit 6ec5b52

Browse files
authored
Add CI workflow configuration for automated testing and validation (#295)
1 parent 53ce238 commit 6ec5b52

1 file changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: CI
2+
on:
3+
pull_request:
4+
types: [opened, synchronize, reopened]
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
validate:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout Code
13+
uses: actions/checkout@v4
14+
15+
- name: Setup Node.js environment
16+
uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
cache: "npm"
20+
21+
- name: Install Dependencies
22+
run: npm ci
23+
24+
# TODO: Add future linting, testing, style checks, etc.
25+
# name: Lint
26+
# run: npm run lint

0 commit comments

Comments
 (0)