Skip to content

Commit

Permalink
artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
scurker committed Nov 6, 2023
1 parent 1f8b42e commit 643e2a5
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,31 @@ jobs:
packages-styles: true
- run: yarn build:react
- run: yarn build:styles
- uses: actions/upload-artifact@v3
with:
name: dist
path: |
node_modules
packages/**/node_modules
packages/react/lib
packages/style/dist
retention-days: 1

react:
needs: build
runs-on: ubuntu-latest
steps:
- run: yarn test --cwd packages/react
- uses: actions/download-artifact@v3
with:
name: dist
- run: yarn test

a11y:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: dist
- run: yarn build:docs
- run: yarn test:a11y

0 comments on commit 643e2a5

Please sign in to comment.