Updates sso e2e tests workflow action to use v2 compose command #304
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: 'Browser PR unit tests' | |
on: | |
pull_request: | |
branches: [master] | |
jobs: | |
run-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm -g install yarn | |
- run: yarn install --frozen-lockfile | |
- name: run unit tests | |
env: | |
NODE_OPTIONS: '--max-old-space-size=8192' | |
run: yarn test |