@@ -44,35 +44,25 @@ jobs:
4444 cache-dependency-path : ' package-lock.json'
4545 - run : npm ci --no-audit --no-fund
4646 - run : npx playwright install chromium --with-deps --no-shell
47+ - run : npm run build-token
4748 - run : npm run build-dev
4849 - run : npm run build-prod-min
4950 - run : npm run build-esm-prod-min
5051 - run : npm run build-style-spec
5152 - run : npm run build-csp
5253 - run : npm run build-css
5354 - run : npm run test-build
54- - run : xvfb-run -a npm run test-csp
5555 - run : xvfb-run -a npm run test-esm
56- - run : npm run build-token
56+ - run : xvfb-run -a npm run test-csp
57+ - run : npm run build-dts
5758 - run : npm run build -w vite-build-test
5859 - run : npm run build -w webpack-build-test
59- - run : npm run size
60+ - run : npm run test -w typescript-build-test
6061 - run : npm run build-pmtiles
62+ - run : npm run size
6163 - run : npm run prepare-release-pages
6264 if : ${{ always() }}
6365
64- test-typings :
65- runs-on : ubuntu-latest
66- steps :
67- - uses : actions/checkout@v4
68- - uses : actions/setup-node@v4
69- with :
70- cache : npm
71- node-version-file : ' .nvmrc'
72- cache-dependency-path : ' package-lock.json'
73- - run : npm ci --no-audit --no-fund
74- - run : npm test --workspace test/build/typings
75-
7666 test-unit :
7767 runs-on : ubuntu-latest
7868 timeout-minutes : 5
9787 needs : [
9888 check,
9989 test-build,
100- test-typings,
10190 test-unit
10291 ]
10392 steps :
@@ -127,6 +116,5 @@ jobs:
127116 |-----|--------|
128117 | check | $(status_emoji "${{ needs.check.result }}") |
129118 | test-build | $(status_emoji "${{ needs.test-build.result }}") |
130- | test-typings | $(status_emoji "${{ needs.test-typings.result }}") |
131119 | test-unit | $(status_emoji "${{ needs.test-unit.result }}") |
132120 EOF
0 commit comments