feat: [EXC-23] CICD and playwright for nextjs passport example #40
Workflow file for this run
This file contains 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: Build and test all passport examples | |
on: | |
pull_request: | |
branches: [main] | |
merge_group: | |
branches: [main] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest-4-cores | |
env: | |
NODE_OPTIONS: --max-old-space-size=14366 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/actions/pr-setup | |
- name: Build Passport Example Projects | |
run: yarn build:passport-examples | |
test: | |
name: Test | |
runs-on: ubuntu-latest-4-cores | |
env: | |
NODE_OPTIONS: --max-old-space-size=14366 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: setup | |
uses: ./.github/actions/pr-setup | |
- name: Run Passport Example Tests | |
run: yarn test:passport-examples |