Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,27 @@ jobs:
--no-cache
--logHeapUsage
--silent
test-publish:
needs: build
uses: ./.github/workflows/workflow-test.yml
permissions:
contents: read
pull-requests: read
statuses: read
with:
runs-on: lynx-ubuntu-24.04-medium
run: |
pnpm dlx @pnpm/registry-mock prepare
pnpm dlx @pnpm/registry-mock &
printf '\n//localhost:4873/:_authToken="this-is-a-fake-token"\n' >> ~/.npmrc
pnpm changeset version --snapshot regression
node packages/tools/canary-release/snapshot.js
pnpm --recursive publish --no-git-checks --access public --registry=http://localhost:4873
cd `mktemp -d`
npx --registry http://localhost:4873 create-rspeedy-canary@latest --template react --dir create-rspeedy-regression
cd create-rspeedy-regression
pnpm install --registry=http://localhost:4873
pnpm run build
test-tools:
needs: build
uses: ./.github/workflows/workflow-test.yml
Expand Down Expand Up @@ -176,6 +197,7 @@ jobs:
pnpm --filter @lynx-js/web-tests run test --reporter='github,dot,junit,html'
pnpm --filter @lynx-js/web-tests run coverage:ci
test-rust:
needs: build
uses: ./.github/workflows/rust.yml
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -188,6 +210,7 @@ jobs:
- code-style-check
- playwright-linux
- test-plugins
- test-publish
- test-react
- test-rust
- test-rspeedy
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/workflow-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ jobs:
NODE_OPTIONS: --max-old-space-size=8192
GITHUB_SHA: ${{ github.event.pull_request.head.sha }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ${{ inputs.run }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
Expand Down
1 change: 1 addition & 0 deletions cspell.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
"manypkg", // https://github.com/Thinkmill/manypkg
"messageformat", // https://formatjs.github.io/docs/intl-messageformat
"memfs",
"mktemp",
"napi",
"nocheck", // @ts-nocheck :)
"pathinfo", // webpack config output.pathinfo
Expand Down
Loading