Skip to content

Commit

Permalink
ci(): fix node 14 by moving sandbox out of test script and regenerate…
Browse files Browse the repository at this point in the history
… package-lock (#8777)
  • Loading branch information
asturur committed Mar 13, 2023
1 parent ed6466f commit 5ae2f2b
Show file tree
Hide file tree
Showing 8 changed files with 3,886 additions and 5,666 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Uglified build
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 18.x
- run: npm ci
- run: npm run build
stats:
Expand All @@ -27,7 +27,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
- run: npm ci
- name: build stats
run: npm run build
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Linting
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 18.x
- run: npm ci
- run: npm run lint
prettier:
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Prettier check
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 18.x
- run: npm ci
- run: npm run prettier:check
coverage:
Expand All @@ -96,7 +96,7 @@ jobs:
- name: Code Coverage Report Updater
uses: actions/setup-node@v1
with:
node-version: 16.x
node-version: 18.x
- run: npm ci
- run: npm run build -- -f
- run: npm run test:coverage && npm run test:visual:coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish-next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18.x
registry-url: https://registry.npmjs.org/
- run: npm ci
- run: node publish-next.js
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 16
node-version: 18.x
registry-url: https://registry.npmjs.org/
- run: npm install
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
node-version: [18.x]
target: [chrome, firefox]
suite: [unit, visual]
fail-fast: false
Expand Down
Loading

0 comments on commit 5ae2f2b

Please sign in to comment.