E2E Linux #11956
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: E2E Linux | |
| on: | |
| # NOTE: If you change these you must update verify_e2e-linux-noop.yml as well | |
| pull_request: | |
| paths-ignore: | |
| - '.changeset/**' | |
| - 'contrib/**' | |
| - 'docs/**' | |
| - 'microsite/**' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:latest | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_DB: postgres | |
| ports: | |
| - 5432/tcp | |
| # needed because the postgres container does not provide a healthcheck | |
| options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: [16.x, 18.x] | |
| env: | |
| CI: true | |
| NODE_OPTIONS: --max-old-space-size=4096 | |
| name: E2E Linux ${{ matrix.node-version }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Configure Git | |
| run: | | |
| git config --global user.email noreply@backstage.io | |
| git config --global user.name 'GitHub e2e user' | |
| - name: use node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| registry-url: https://registry.npmjs.org/ # Needed for auth | |
| - name: yarn install | |
| uses: backstage/actions/yarn-install@v0.6.4 | |
| with: | |
| cache-prefix: ${{ runner.os }}-v${{ matrix.node-version }} | |
| - run: yarn tsc | |
| - run: yarn backstage-cli repo build | |
| - name: run E2E test | |
| run: | | |
| sudo sysctl fs.inotify.max_user_watches=524288 | |
| yarn e2e-test run | |
| env: | |
| BACKSTAGE_TEST_DISABLE_DOCKER: 1 | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: postgres | |
| POSTGRES_HOST: localhost | |
| POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} |