Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit711204f

Browse files
committed
Update CI workflow.
1 parent3bc8f10 commit711204f

File tree

2 files changed

+35
-37
lines changed

2 files changed

+35
-37
lines changed

‎.github/workflows/CI.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name:CI
2+
3+
on:
4+
push:
5+
branches:[ master ]
6+
pull_request:
7+
branches:[ master ]
8+
9+
jobs:
10+
test:
11+
runs-on:ubuntu-latest
12+
strategy:
13+
matrix:
14+
node-version:[ 14.x ]
15+
16+
steps:
17+
-name:Checkout repository
18+
uses:actions/checkout@v2
19+
20+
-name:Setup Node.js ${{ matrix.node-version }}
21+
uses:actions/setup-node@v1
22+
with:
23+
node-version:${{ matrix.node-version }}
24+
25+
-name:Install dependencies
26+
run:npm i
27+
28+
-name:Run linting
29+
run:npm run lint
30+
31+
-name:Run tests
32+
run:npm run coverage
33+
34+
-name:Upload coverage to Codecov
35+
uses:codecov/codecov-action@v1

‎.github/workflows/ci.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp