Skip to content

Commit

Permalink
👷 TestのCIを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
ci7lus committed Jul 6, 2020
1 parent e0ec116 commit 1352ca6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on: [push]

jobs:
jest:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x]

steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Install
run: |
yarn
- name: Build
run: |
yarn build
- name: Test
run: |
yarn test

0 comments on commit 1352ca6

Please sign in to comment.