mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-01-31 22:08:00 +00:00
create test action
This commit is contained in:
parent
73a039d76f
commit
c442be9dde
1 changed files with 11 additions and 0 deletions
11
.github/workflows/test.yml
vendored
Normal file
11
.github/workflows/test.yml
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
name: test
|
||||
on: push
|
||||
jobs:
|
||||
main:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/setup-node@v2
|
||||
with: { node-version: lts/*, cache: yarn }
|
||||
- run: yarn
|
||||
- run: yarn test
|
Loading…
Add table
Reference in a new issue