Skip to content

Commit

Permalink
add e2e runners
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh Long committed Dec 10, 2023
1 parent 2904d76 commit 35ae9a9
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,75 @@ jobs:
main-branch-name: 'master'
- name: Run tests
run: npx nx test
e2e-actions:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
NETWORK: cayenne
MINT_NEW: true
DEBUG: false
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install project dependencies
run: yarn install
- uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- name: Run lit action tests
run: npx run test:e2e:node --group=lit-actions
e2e-connection:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
NETWORK: cayenne
MINT_NEW: false
DEBUG: false
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install project dependencies
run: yarn install
- uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- name: Run lit action tests
run: npx run test:e2e:node --group=connection
e2e-auth-methods:
runs-on: ubuntu-latest
timeout-minutes: 30
env:
NETWORK: cayenne
MINT_NEW: true
DEBUG: false
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Install project dependencies
run: yarn install
- uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- name: Run lit action tests
run: npx run test:e2e:node --group=pkp-auth-method

0 comments on commit 35ae9a9

Please sign in to comment.