Skip to content
This repository has been archived by the owner on Jun 18, 2020. It is now read-only.

Commit

Permalink
ci(github): check building on each run
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeysova committed Mar 24, 2020
1 parent 2cfe669 commit ac45bd6
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/nodejs.yml
Expand Up @@ -5,22 +5,22 @@ name: Node.js CI

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js v12
uses: actions/setup-node@v1
with:
node-version: v12.x
- run: yarn
- run: yarn test
env:
CI: true
- uses: actions/checkout@v2
- name: Use Node.js v12
uses: actions/setup-node@v1
with:
node-version: v12.x
- run: yarn
- run: yarn build
- run: yarn test
env:
CI: true

0 comments on commit ac45bd6

Please sign in to comment.