intimate_view/.github/workflows/ci.yml

22 lines
486 B
YAML
Raw Normal View History

2020-08-18 11:22:29 +00:00
name: 📦 Test and Deploy
on:
push:
branches:
- master
jobs:
install-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@master
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@master
with:
node-version: ${{ matrix.node-version }}
- name: Install and Test
run: |
yarn
yarn test
yarn build