Skip to content
This repository was archived by the owner on Jul 24, 2024. It is now read-only.

Commit 205cf8a

Browse files
committed
chore: Move Coverage to GitHub Actions
1 parent 1d10ec7 commit 205cf8a

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

.github/workflows/coverage.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Coverage
2+
3+
on:
4+
push:
5+
paths:
6+
- "**/*.js"
7+
- "test/**"
8+
- "package.json"
9+
- "bin/node-sass"
10+
- ".github/workflows/coverage.yml"
11+
pull_request:
12+
paths:
13+
- "**/*.js"
14+
- "test/**"
15+
- "package.json"
16+
- "bin/node-sass"
17+
- ".github/workflows/coverage.yml"
18+
19+
jobs:
20+
build:
21+
runs-on: ubuntu-latest
22+
env:
23+
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI: true
24+
25+
steps:
26+
- uses: actions/checkout@v2
27+
28+
- name: Install packages
29+
run: npm install --unsafe-perm
30+
31+
- name: Run Linting
32+
run: npm run coverage

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ jobs:
1111
- stage: test
1212
node_js: "14.5"
1313
os: linux
14-
after_success: npm run-script coverage;
1514
addons:
1615
apt:
1716
sources:

0 commit comments

Comments
 (0)