Skip to content

Commit

Permalink
Create build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinchappell committed Mar 2, 2020
1 parent 8ad76e7 commit 22470e0
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
@@ -0,0 +1,23 @@
name: build

on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [12]
steps:
- uses: actions/checkout@v2
- name: Set up Nodejs ${{ matrix.node }}
uses: actions/setup-node@v1
- name: Install dependencies
env:
CI: true
run: npm install
- name: Build
run: npm run build

0 comments on commit 22470e0

Please sign in to comment.