Skip to content

Commit f958782

Browse files
committed
自動テスト
1 parent cdb88a8 commit f958782

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

.github/workflows/test.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Test
2+
on: pull_request
3+
jobs:
4+
tests:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v3
8+
9+
- name: Setup Node
10+
uses: actions/setup-node@v3
11+
with:
12+
node-version: 18
13+
cache: npm
14+
15+
- name: NPM install
16+
run: npm install
17+
18+
- name: Run Test
19+
run: npm run test
20+
21+
- name: TSC
22+
run: tsc
23+
24+
- name: Run build
25+
run: npm run build

0 commit comments

Comments
 (0)