Skip to content

Commit

Permalink
ci: revert to plain Node image, no browsers in our action
Browse files Browse the repository at this point in the history
  • Loading branch information
hassy committed Dec 17, 2024
1 parent 6b5ff62 commit a9f086a
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install
run: npm ci

- name: Run example
uses: artilleryio/action-cli@v1
uses: actions/setup-node@v3
with:
command: run browser-load-test.ts --record --tags ${{ env.CLI_TAGS }},group:browser-load-test --note ${{ env.CLI_NOTE }}
working-directory: ${{ env.CWD }}
node-version: '20.x'
- name: Install dependencies
run: npm ci
- name: Run test
run: |
$ARTILLERY_BINARY_PATH run browser-load-test.ts --record --tags ${{ env.CLI_TAGS }},group:browser-load-test --note "${{ env.CLI_NOTE }}"
working-directory: ${{ env.CWD }}
env:
ARTILLERY_BINARY_PATH: ${{ env.ARTILLERY_BINARY_PATH }}
ARTILLERY_CLOUD_ENDPOINT: ${{ secrets.ARTILLERY_CLOUD_ENDPOINT_TEST }}
Expand Down

0 comments on commit a9f086a

Please sign in to comment.