Skip to content

Commit 7034036

Browse files
authored
* CI * npx browserslist@latest --update-db * Disbale build:demo for now as it always seems to fail. * With node 16, all jobs run for me, so, let's try with that.
1 parent 4bb9e7b commit 7034036

File tree

2 files changed

+31
-3
lines changed

2 files changed

+31
-3
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Node.js CI
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: ubuntu-latest
9+
10+
strategy:
11+
matrix:
12+
# node-version: [16.x, 18.x, 20.x]
13+
node-version: [16.x]
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Use Node.js ${{ matrix.node-version }}
18+
uses: actions/setup-node@v1
19+
with:
20+
node-version: ${{ matrix.node-version }}
21+
- run: yarn install
22+
- run: yarn lint
23+
- run: yarn test:coverage -v
24+
- run: yarn build:lib
25+
- run: yarn build:demo
26+
- run: yarn build:dist
27+
- run: yarn build:standalone
28+

yarn.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2326,9 +2326,9 @@ caniuse-api@^3.0.0:
23262326
lodash.uniq "^4.5.0"
23272327

23282328
caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001317:
2329-
version "1.0.30001402"
2330-
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001402.tgz"
2331-
integrity sha512-Mx4MlhXO5NwuvXGgVb+hg65HZ+bhUYsz8QtDGDo2QmaJS2GBX47Xfi2koL86lc8K+l+htXeTEB/Aeqvezoo6Ew==
2329+
version "1.0.30001517"
2330+
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001517.tgz"
2331+
integrity sha512-Vdhm5S11DaFVLlyiKu4hiUTkpZu+y1KA/rZZqVQfOD5YdDT/eQKlkt7NaE0WGOFgX32diqt9MiP9CAiFeRklaA==
23322332

23332333
chalk@^2.0.0, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2:
23342334
version "2.4.2"

0 commit comments

Comments
 (0)