Skip to content

Commit

Permalink
Create test-build.yml
Browse files Browse the repository at this point in the history
rafalolszewski94 authored May 12, 2021
1 parent 04a5686 commit c96e42b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/test-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test build

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14'
- run: npm ci
- run: npm run build --if-present

0 comments on commit c96e42b

Please sign in to comment.