Skip to content

Commit 7ab44e5

Browse files
committed
ci: try build sheep?
1 parent 3280ccc commit 7ab44e5

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/build.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: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: '8'
18+
19+
- name: Install dependencies
20+
run: npm install
21+
22+
- name: Build Sheep
23+
run: npm run build

0 commit comments

Comments
 (0)