Skip to content

Commit

Permalink
Add a CI job to run against the public EDS storybook
Browse files Browse the repository at this point in the history
I previously didn't add this because EDS's storybook is out of our control, and I don't want the tests here to start failing if something gets borked over there.

But I figure now that it's fine to add a non-blocking check as another validation on any changes.
  • Loading branch information
ahuth committed Mar 21, 2024
1 parent 4c61c6f commit a6ea307
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,23 @@ jobs:

- name: Integration Tests
run: npm run test:integrationOnly

validate-on-eds:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Setup node
uses: actions/setup-node@v3
with:
node-version-file: '.node-version'

- name: Install deps
uses: bahmutov/npm-install@v1

- name: Build
run: npm run build

- name: Run on EDS
run: npm run demo:eds

0 comments on commit a6ea307

Please sign in to comment.