Skip to content

Commit 627b444

Browse files
committed
chore: updgrading test runner
Signed-off-by: Pawel Psztyc <jarrodek@gmail.com>
1 parent a8df7f1 commit 627b444

File tree

7 files changed

+2651
-7929
lines changed

7 files changed

+2651
-7929
lines changed

.github/workflows/tests.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
name: tests
2+
3+
env:
4+
FORCE_COLOR: 1
5+
6+
on:
7+
push:
8+
pull_request:
9+
branches:
10+
- stage
11+
- master
12+
jobs:
13+
test_linux:
14+
name: ${{ matrix.os }} (${{ matrix.browser }})
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os: [ubuntu-18.04, ubuntu-20.04]
19+
runs-on: ${{ matrix.os }}
20+
steps:
21+
- uses: actions/checkout@v2
22+
- uses: actions/setup-node@v1
23+
with:
24+
node-version: 14
25+
- uses: microsoft/playwright-github-action@v1
26+
- name: Install dependencies
27+
run: npm ci
28+
- name: Run tests
29+
run: npm test
30+
test_win:
31+
name: "Windows"
32+
runs-on: windows-latest
33+
steps:
34+
- uses: actions/checkout@v2
35+
- uses: actions/setup-node@v1
36+
with:
37+
node-version: 14
38+
- uses: microsoft/playwright-github-action@v1
39+
- name: Install dependencies
40+
run: npm ci
41+
- name: Run tests
42+
run: npm test

.npmignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,5 @@ coverage/
22
test/
33
demo/
44
CONTRIBUTING.md
5-
.travis.yml
65
polymer.json
7-
karma.*
86
.*

.travis.yml

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

karma.conf.js

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

karma.sl.config.js

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

0 commit comments

Comments
 (0)