Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
Try upload-artifact fix.
  • Loading branch information
Mugen87 committed May 6, 2024
1 parent f17e262 commit a638cdc
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -61,3 +61,54 @@ jobs:

- name: === Circular dependencies testing ===
run: npm run test-circular-deps

e2e:
name: E2E testing
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
fail-fast: false
matrix:
os: [ macos-latest ]
CI: [ 0, 1, 2, 3 ]
env:
CI: ${{ matrix.CI }}
steps:
- name: Git checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Install Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build-module

- name: === E2E testing ===
run: npm run test-e2e
- name: Upload output screenshots
uses: actions/upload-artifact@1746f4ab65b179e0ea60a494b83293b640dd5bba # v4
if: always()
with:
name: Output screenshots
path: test/e2e/output-screenshots
if-no-files-found: ignore

e2e-cov:
name: Examples ready for release
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4
- name: Install Node
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4
with:
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm ci

- name: === Examples ready for release ===
run: npm run test-e2e-cov

0 comments on commit a638cdc

Please sign in to comment.