Skip to content

Commit 2b56214

Browse files
committed
jsevalのテストも独立したciのファイルに
1 parent bc837f3 commit 2b56214

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: jsEval Tests CI
2+
on:
3+
pull_request:
4+
paths:
5+
- 'packages/jsEval/**'
6+
- '.github/workflows/jseval-tests.yml'
7+
jobs:
8+
test-js-eval:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
node-version: [22.x]
13+
steps:
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-node@v4
16+
with:
17+
node-version: ${{ matrix.node-version }}
18+
cache: 'npm'
19+
- run: npm ci
20+
- run: npm test -w @my-code/js-eval

.github/workflows/node.js.yml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,3 @@ jobs:
3232
cache: 'npm'
3333
- run: npm ci
3434
- run: npm run tsc
35-
36-
test-js-eval:
37-
runs-on: ubuntu-latest
38-
strategy:
39-
matrix:
40-
node-version: [22.x]
41-
steps:
42-
- uses: actions/checkout@v4
43-
- uses: actions/setup-node@v4
44-
with:
45-
node-version: ${{ matrix.node-version }}
46-
cache: 'npm'
47-
- run: npm ci
48-
- run: npm test --workspace=packages/jsEval

0 commit comments

Comments
 (0)