Skip to content

Commit

Permalink
Porting from the Internal Package
Browse files Browse the repository at this point in the history
Signed-off-by: 8845musign <hiroki.yokouchi@dr-ubie.com>
  • Loading branch information
8845musign committed Oct 5, 2023
1 parent 07d1aa1 commit 9fc3cd5
Show file tree
Hide file tree
Showing 9 changed files with 643 additions and 87 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Test

on:
push:
branches:
- main
pull_request:

jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
persist-credentials: false

- name: Configure .npmrc
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc

- uses: ./actions/setup-node-and-install-deps
with:
access-token-read-github-package-registry: ${{ secrets.ACCESS_TOKEN_READ_GITHUB_PACKAGE_REGISTRY }}

- name: Install playwright browsers
run: npx playwright install --with-deps

- name: Test
run: npm run test
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ npm-debug.log*
# storybook
/storybook-static
build-storybook.log

# Test
/test-results/
/playwright-report/
/playwright/.cache/
Loading

0 comments on commit 9fc3cd5

Please sign in to comment.