Skip to content

fix: pass props to custom bootstrap (#5731) #1799

fix: pass props to custom bootstrap (#5731)

fix: pass props to custom bootstrap (#5731) #1799

name: Integration Test(Linux)
# Controls when the action will run.
on:
# Triggers the workflow on pull request events but only for the main branch
push:
branches: [main, feat-update-rsbuild-version]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
integration-test-linux:
# The type of runner that the job will run on
runs-on: "ubuntu-latest"
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Print runner context
env:
RUNNER_CONTEXT: ${{ toJson(runner) }}
run: echo "$RUNNER_CONTEXT"
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Install Pnpm
uses: pnpm/action-setup@v2
- name: Check skip CI
run: echo "RESULT=$(node ./scripts/skipCI.js)" >> "$GITHUB_OUTPUT"
id: skip-ci
- name: Log skip CI result
run: echo "${{steps.skip-ci.outputs.RESULT}}"
- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
- name: Nx Cache
id: nx-cache
uses: actions/cache@v3
with:
path: .nx/cache
key: nx-${{ github.ref_name }}-${{ github.sha }}
restore-keys: |
nx-${{ github.ref_name }}-
nx-
- name: Install Dependencies
if: ${{steps.skip-ci.outputs.RESULT != 'true'}}
run: pnpm install --ignore-scripts --frozen-lockfile
- name: Prepare
if: ${{steps.skip-ci.outputs.RESULT != 'true'}}
run: pnpm run prepare
- name: Install Puppeteer
if: ${{steps.skip-ci.outputs.RESULT != 'true'}}
run: cd ./tests/node_modules/puppeteer && npm run postinstall && cd ../..
- name: Test
if: ${{steps.skip-ci.outputs.RESULT != 'true'}}
run: cd ./tests && pnpm run test