Skip to content

Throwaway PR: Try to repro and debug CI-specific test failures from #1539 #1627

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 11 commits into from
115 changes: 58 additions & 57 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,70 +13,71 @@ jobs:
# The linting tasks take ~5s to complete and it doesn't
# make sense to separate them into separate steps that would
# take ~25s just to run git clone and restore node_modules.
lint-and-typecheck:
name: 'Lint and typecheck'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare-playground
- run: npx nx affected --target=lint
- run: npx nx affected --target=typecheck
#lint-and-typecheck:
# name: 'Lint and typecheck'
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: ./.github/actions/prepare-playground
# - run: npx nx affected --target=lint
# - run: npx nx affected --target=typecheck
test-unit:
runs-on: ubuntu-latest
needs: [lint-and-typecheck]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare-playground
- run: node --expose-gc node_modules/nx/bin/nx affected --target=test --configuration=ci
test-e2e:
runs-on: ubuntu-latest
needs: [lint-and-typecheck]
# Run as root to allow node to bind to port 80
#needs: [lint-and-typecheck]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare-playground
- run: sudo ./node_modules/.bin/cypress install --force
- run: sudo CYPRESS_CI=1 npx nx e2e playground-website --configuration=ci --verbose
# Upload the Cypress screenshots as artifacts if the job fails
- uses: actions/upload-artifact@v2
if: ${{ failure() }}
with:
name: cypress-screenshots
path: dist/cypress/packages/playground/website/screenshots
- run: node --expose-gc node_modules/nx/bin/nx affected --target='really-test' --configuration=ci
#- run: node --expose-gc node_modules/nx/bin/nx run php-wasm-node:test --testNamePattern='.*onMessage.*'
#php-wasm-node:testtest-e3e:
# runs-on: ubuntu-latest
# needs: [lint-and-typecheck]
# # Run as root to allow node to bind to port 80
# steps:
# - uses: actions/checkout@v3
# - uses: ./.github/actions/prepare-playground
# - run: sudo ./node_modules/.bin/cypress install --force
# - run: sudo CYPRESS_CI=1 npx nx e2e playground-website --configuration=ci --verbose
# # Upload the Cypress screenshots as artifacts if the job fails
# - uses: actions/upload-artifact@v2
# if: ${{ failure() }}
# with:
# name: cypress-screenshots
# path: dist/cypress/packages/playground/website/screenshots

build:
runs-on: ubuntu-latest
needs: [lint-and-typecheck]
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare-playground
- run: npx nx affected --target=build --parallel=3 --verbose
#build:
# runs-on: ubuntu-latest
# needs: [lint-and-typecheck]
# steps:
# - uses: actions/checkout@v3
# - uses: ./.github/actions/prepare-playground
# - run: npx nx affected --target=build --parallel=3 --verbose

# Deploy documentation job
deploy_docs:
if: github.ref == 'refs/heads/trunk' && github.event_name == 'push'
# Add a dependency to the build job
needs: [test-unit, test-e2e, build]
name: 'Deploy doc site'
## Deploy documentation job
#deploy_docs:
# if: github.ref == 'refs/heads/trunk' && github.event_name == 'push'
# # Add a dependency to the build job
# needs: [test-unit, test-e2e, build]
# name: 'Deploy doc site'

# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# # Grant GITHUB_TOKEN the permissions required to make a Pages deployment
# permissions:
# pages: write # to deploy to Pages
# id-token: write # to verify the deployment originates from an appropriate source

# Deploy to the github-pages environment
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
# # Deploy to the github-pages environment
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}

# Specify runner + deployment step
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./.github/actions/prepare-playground
- run: npm run build:docs
- uses: actions/upload-pages-artifact@v1
with: { path: dist/docs/build }
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
# # Specify runner + deployment step
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: ./.github/actions/prepare-playground
# - run: npm run build:docs
# - uses: actions/upload-pages-artifact@v1
# with: { path: dist/docs/build }
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v2
2 changes: 1 addition & 1 deletion packages/php-wasm/node/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
},
"dependsOn": ["build"]
},
"test": {
"really-test": {
"executor": "@nx/vite:test",
"outputs": ["{workspaceRoot}/coverage/packages/php-wasm/node"],
"options": {
Expand Down
Loading
Loading