Skip to content

Commit 44cc90a

Browse files
Merge pull request #21 from preactjs/refactor
Refactor, move to microbundle & karmatic
2 parents 4e5825a + 0d6c068 commit 44cc90a

File tree

9 files changed

+5288
-4508
lines changed

9 files changed

+5288
-4508
lines changed

.eslintrc

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

.github/workflows/ci.yml

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,25 @@ on:
88

99
jobs:
1010
test:
11-
name: Test
1211
runs-on: ubuntu-latest
1312
steps:
14-
- uses: actions/checkout@v1
15-
- uses: actions/setup-node@v1
16-
with:
17-
node-version: '10.x'
18-
- run: npm ci
19-
- run: npm test
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 & 130 deletions
This file was deleted.

0 commit comments

Comments
 (0)