chore: wip #71
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: e2e-config-noesm-js | |
on: | |
push: | |
jobs: | |
e2e-config-noesm-js: | |
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')" | |
runs-on: ubuntu-latest | |
env: | |
DEBUG: currents:* | |
services: | |
director: | |
image: agoldis/sorry-cypress-director | |
ports: | |
- 1234:1234 | |
strategy: | |
matrix: | |
node-version: ["18"] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Link monorepo packages | |
run: npm install | |
- name: config-noesm-js | |
working-directory: ./e2e/config-noesm-js | |
env: | |
CURRENTS_API_URL: http://localhost:1234 | |
run: > | |
npx cypress-cloud run | |
--record | |
--parallel | |
--key some-key | |
--browser chrome | |
--tag smoke,linux | |
--spec "./cypress/e2e/*.spec.js" | |
--ci-build-id "${{ github.repository }}-${{ github.run_id }}-${{ github.run_attempt}}" |