Skip to content

Commit 9e61404

Browse files
feat: Improve CI codebase (#1)
* feat: Improve CI codebase * feat: Improve CI codebase * feat: Improve CI codebase
1 parent 417c2be commit 9e61404

12 files changed

+140
-25695
lines changed

.github/workflows/ci.yaml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Check CI
2+
3+
on:
4+
pull_request:
5+
types: [opened, edited, synchronize]
6+
7+
permissions:
8+
pull-requests: read
9+
contents: read
10+
11+
jobs:
12+
ci:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- name: Checkout code
17+
uses: actions/checkout@v4
18+
19+
- name: Use Node.js
20+
uses: actions/setup-node@v4
21+
with:
22+
node-version: 23
23+
24+
- name: Install dependencies
25+
run: yarn
26+
27+
- name: Build project
28+
run: yarn build
29+
30+
- name: Run CI
31+
run: yarn ci

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
/node_modules
44
/lib
55
/build
6+
yarn.lock
7+
package-lock.json
68

79
# Logs
810
logs

0 commit comments

Comments
 (0)