Skip to content

Commit 963ff94

Browse files
committed
Merge remote-tracking branch 'origin/main' into main
2 parents cf794f3 + 39f9a74 commit 963ff94

31 files changed

+6823
-10252
lines changed

.github/workflows/CI.yml

+24-25
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,36 @@
11
name: CI
22

33
on:
4-
pull_request:
5-
branches: [main]
6-
push:
7-
branches: [main]
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
1312

1413
steps:
15-
- uses: actions/checkout@v2
16-
- uses: actions/setup-node@v1
17-
with:
18-
node-version: '16'
19-
- run: npm ci
20-
- run: npm run lint
14+
- uses: actions/checkout@v2
15+
- uses: actions/setup-node@v1
16+
with:
17+
node-version: "16"
18+
- run: npm ci
19+
- run: npm run lint
2120

22-
- name: Build & Bundlewatch
23-
uses: jackyef/bundlewatch-gh-action@master
24-
env:
25-
CI_BRANCH_BASE: main
26-
with:
27-
build-script: npm run build
28-
bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
21+
- name: Build & Bundlewatch
22+
uses: jackyef/bundlewatch-gh-action@master
23+
env:
24+
CI_BRANCH_BASE: main
25+
with:
26+
build-script: npm run build
27+
bundlewatch-github-token: ${{ secrets.BUNDLEWATCH_GITHUB_TOKEN }}
2928

30-
- name: Tests
31-
run: npm test
29+
- name: Tests
30+
run: npm test
3231

33-
- name: Code Coverage
34-
uses: codecov/codecov-action@v1
35-
with:
36-
files: ./packages/core/coverage/lcov.info,./packages/utils/coverage/lcov.info,./packages/dom/coverage/lcov.info
37-
fail_ci_if_error: true
32+
- name: Code Coverage
33+
uses: codecov/codecov-action@v3
34+
with:
35+
files: ./packages/core/coverage/lcov.info,./packages/utils/coverage/lcov.info,./packages/dom/coverage/lcov.info
36+
fail_ci_if_error: true

0 commit comments

Comments
 (0)