Skip to content

Commit d09dd18

Browse files
authored
Create build.yml
1 parent 0440c78 commit d09dd18

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/build.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: CI
2+
3+
env:
4+
DO_NOT_TRACK: '1'
5+
6+
on:
7+
push:
8+
branches: ['main']
9+
pull_request:
10+
branches: ['main']
11+
12+
jobs:
13+
build:
14+
runs-on: ubuntu-latest
15+
16+
steps:
17+
- uses: actions/checkout@v3
18+
- name: Use Node.js 20.x
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 20.x
22+
cache: 'npm'
23+
- run: npm ci
24+
- run: npm run build

0 commit comments

Comments
 (0)