Skip to content

Commit 4348b61

Browse files
GitHub actions (#20)
GitHub actions
2 parents 4071750 + 4530057 commit 4348b61

File tree

10 files changed

+10103
-5424
lines changed

10 files changed

+10103
-5424
lines changed

.circleci/config.yml

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

.eslintrc

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

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
types: [opened, synchronize, reopened, ready_for_review]
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v1
14+
- uses: actions/setup-node@v1
15+
with:
16+
node-version: '12.x'
17+
- name: npm install, build, and test
18+
run: npm ci
19+
- name: build
20+
run: npm run prepare
21+
env:
22+
CI: true
23+
- name: build
24+
run: npm test
25+
env:
26+
CI: true
27+
- name: saucelabs
28+
run: npm run test:browser
29+
env:
30+
CI: true
31+
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }}
32+
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
dist
22
node_modules
33
.env
4+
coverage

karma.conf.js

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

0 commit comments

Comments
 (0)