We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64dc174 commit 65486f2Copy full SHA for 65486f2
.github/workflows/pull-request-ci.yml
@@ -0,0 +1,35 @@
1
+name: Pull Request CI
2
+
3
+on:
4
+ pull_request:
5
6
+permissions:
7
+ contents: read
8
9
+jobs:
10
+ ci:
11
+ name: CI
12
+ runs-on: ubuntu-latest
13
+ timeout-minutes: 10
14
15
+ steps:
16
+ - name: Check out repository
17
+ uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
18
19
+ - name: Set up Node.js
20
+ uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
21
+ with:
22
+ node-version: 22
23
+ cache: npm
24
25
+ - name: Install dependencies
26
+ run: npm ci
27
28
+ - name: Install Codex CLI
29
+ run: npm install -g @openai/codex
30
31
+ - name: Run test suite
32
+ run: npm test
33
34
+ - name: Run build
35
+ run: npm run build
0 commit comments