Skip to content

Commit 2cc6c93

Browse files
authored
ci: cleanup action versions and caching (#707)
1 parent 883b163 commit 2cc6c93

File tree

3 files changed

+26
-24
lines changed

3 files changed

+26
-24
lines changed

.github/workflows/browser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
fetch-depth: 10
1818
- name: Use Node.js 20.x
19-
uses: actions/setup-node@v3
19+
uses: actions/setup-node@v4
2020
with:
2121
node-version: 20.x
2222
- run: npm ci

.github/workflows/ci.yml

+22-20
Original file line numberDiff line numberDiff line change
@@ -2,38 +2,40 @@ name: CI
22

33
on: [push, pull_request]
44

5+
env:
6+
HUSKY: 0
7+
58
jobs:
6-
ci:
9+
lint:
710
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Use Node.js
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: 20.x
17+
- run: npm ci
18+
- run: npm run lint
819

20+
test:
21+
runs-on: ubuntu-latest
22+
needs: lint
923
strategy:
24+
fail-fast: false
1025
matrix:
1126
node-version: [16.x, 18.x, 20.x]
12-
1327
steps:
1428
- uses: actions/checkout@v4
15-
with:
16-
fetch-depth: 10
17-
- name: Use Node.js 20.x to build
18-
uses: actions/setup-node@v3
19-
with:
20-
node-version: 20.x
21-
- run: npm install
22-
- run: npm run build
23-
- run: rm -rf node_modules
2429
- name: Use Node.js ${{ matrix.node-version }}
25-
uses: actions/setup-node@v3
30+
uses: actions/setup-node@v4
2631
with:
2732
node-version: ${{ matrix.node-version }}
28-
- run: npm install
33+
cache: npm
34+
- run: npm ci
2935
- run: npm run test
30-
env:
31-
CI: true
32-
- run: npm run lint
33-
if: matrix.node-version == '20.x'
3436
- run: npm run docs:diff
35-
if: matrix.node-version == '20.x'
37+
if: matrix.node-version == 20
3638
- run: npm run test:node
37-
if: matrix.node-version >= '20.x'
39+
if: matrix.node-version >= 20
3840
- run: npm run test:pack
39-
if: matrix.node-version >= '20.x'
41+
if: matrix.node-version >= 20

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,11 @@
9292
"examples:node:commonjs:test": "cd examples/node-commonjs && npm install && npm test",
9393
"examples:node:esmodules:test": "cd examples/node-esmodules && npm install && npm test",
9494
"examples:node:jest:test": "cd examples/node-jest && npm install && npm test",
95-
"prepare": "cd $( git rev-parse --show-toplevel ) && husky install",
95+
"prepare": "husky install",
9696
"lint": "npm run eslint:check && npm run prettier:check",
9797
"eslint:check": "eslint src/ test/ examples/ *.js",
9898
"eslint:fix": "eslint --fix src/ test/ examples/ *.js",
99-
"pretest": "[ -n $CI ] || npm run build",
99+
"pretest": "npm run build",
100100
"test": "BABEL_ENV=commonjsNode node --throw-deprecation node_modules/.bin/jest test/unit/",
101101
"test:matching": "BABEL_ENV=commonjsNode node --throw-deprecation node_modules/.bin/jest test/unit/ -t",
102102
"pretest:browser": "optional-dev-dependency && npm run build && npm-run-all --parallel examples:browser:**",
@@ -110,7 +110,7 @@
110110
"prettier:fix": "prettier --write .",
111111
"bundlewatch": "npm run pretest:browser && bundlewatch --config bundlewatch.config.json",
112112
"md": "runmd --watch --output=README.md README_js.md",
113-
"docs": "( node --version | grep -q 'v20' ) && ( npm run build && npx runmd --output=README.md README_js.md )",
113+
"docs": "npm run build && npx runmd --output=README.md README_js.md",
114114
"docs:diff": "npm run docs && git diff --quiet README.md",
115115
"build": "./scripts/build.sh",
116116
"prepack": "npm run build",

0 commit comments

Comments
 (0)