Skip to content

Commit 4c8d0d8

Browse files
committed
chore: Add CI workflow for automated testing and lock file updates
1 parent 6738d5b commit 4c8d0d8

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- uses: actions/checkout@v4
13+
14+
- name: Setup Node.js
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: '18'
18+
cache: 'pnpm'
19+
20+
- name: Install dependencies
21+
run: pnpm install --frozen-lockfile
22+
23+
- name: Run tests
24+
run: pnpm test
25+
26+
- name: Run build
27+
run: pnpm build

0 commit comments

Comments
 (0)