Skip to content

Commit

Permalink
chore: valid test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed Oct 17, 2023
1 parent 37743d4 commit f635621
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,21 +27,21 @@ jobs:
- name: Run tests
run: yarn test:integration:sf

integration-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
test: ['test:integration:install', 'test:integration:link']
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
- run: yarn build
- name: Run tests
run: yarn ${{matrix.test}}
integration-tests:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
test: ['test:integration:install', 'test:integration:link']
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: lts/*
- uses: salesforcecli/github-workflows/.github/actions/yarnInstallWithRetries@main
- run: yarn build
- name: Run tests
run: yarn ${{matrix.test}}

unit-tests:
uses: salesforcecli/github-workflows/.github/workflows/unitTest.yml@main

0 comments on commit f635621

Please sign in to comment.