Skip to content

Commit

Permalink
adding a build step in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kokes committed May 12, 2020
1 parent 35e0708 commit 07404c7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/yarn-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,19 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn test

build:
runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn install
- run: yarn build:all

0 comments on commit 07404c7

Please sign in to comment.