-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (38 loc) · 1.04 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: Run unit & storybook tests
on:
pull_request:
push:
branches-ignore:
- main
- release-*
permissions:
id-token: write
contents: read
jobs:
unit-tests:
uses: nationalarchives/tdr-github-actions/.github/workflows/tdr_test.yml@main
with:
repo-name: tdr-components
test-command: |
npm ci
npm t
secrets:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
interaction-and-accessibility:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "16.x"
- name: Install dependencies
run: yarn
- name: Install Playwright
run: npx playwright install --with-deps
- name: Build Storybook
run: yarn build-storybook
- name: Serve Storybook and run tests
run: |
npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \
"npx http-server storybook-static --port 6006 --silent" \
"npx wait-on tcp:6006 && yarn test-storybook"