Skip to content

Commit 6ad9add

Browse files
committed
Add GitHub Action
1 parent b46150d commit 6ad9add

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yml

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

0 commit comments

Comments
 (0)