Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,20 @@ name: CI - Build

on:
pull_request:
branches: [ master, develop ]
branches:
- master
- develop

jobs:
build:

runs-on: ubuntu-latest

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

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: '12'
- run: npm ci
- run: npm run build --if-present
4 changes: 3 additions & 1 deletion .github/workflows/deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
name: Deploy - Production

on:
push: master
push:
branches:
- master

jobs:
deploy-production:
Expand Down