Skip to content

Commit

Permalink
Update CI Firebase workflow, drop matrix strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
PauliusSasnauskas committed Feb 10, 2020
1 parent 7ef1e27 commit a439719
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 23 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ on:
push:
branches:
- master

env:
NODE_VERSION: '12.x'

jobs:
build-and-deploy:
name: Build and Deploy
runs-on: ubuntu-latest

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

steps:
- name: Check out master
uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
node-version: ${{ env.NODE_VERSION }}
- run: npm install
- run: npm run build --if-present
- name: Deploy to Firebase
Expand Down
17 changes: 0 additions & 17 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit a439719

Please sign in to comment.