Skip to content

Commit

Permalink
attempt to fix e2e-exports ci
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelangarano committed Sep 15, 2023
1 parent 5317b24 commit 4ba5173
Showing 1 changed file with 33 additions and 33 deletions.
66 changes: 33 additions & 33 deletions .github/workflows/e2e-exports.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,38 @@
name: e2e-exports

on:
push:
push:

jobs:
e2e-exports:
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
runs-on: ubuntu-latest
env:
DEBUG: currents:*

strategy:
matrix:
node-version: ["18", "16", "14"]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install npm (node14)
run: npm install -g npm@latest

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Link monorepo packages
run: npm install

- name: Test Exports
working-directory: ./e2e/exports
run: |
npm run testexports
e2e-exports:
if: "!contains(toJSON(github.event.commits.*.message), '[skip ci]')"
runs-on: ubuntu-latest
env:
DEBUG: currents:*

strategy:
matrix:
node-version: ["18", "16"]

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}

- name: Install npm (node16)
run: npm install -g npm@latest

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

- name: Link monorepo packages
run: npm install

- name: Test Exports
working-directory: ./e2e/exports
run: |
npm run testexports

0 comments on commit 4ba5173

Please sign in to comment.