1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-20 10:21:36 +07:00

Merge remote-tracking branch 'origin/master' into update-stack

This commit is contained in:
Juan Picado @jotadeveloper 2019-08-10 21:41:10 +02:00
commit 2dfa7aa4d6
No known key found for this signature in database
GPG Key ID: 15AA875EF3768142

View File

@ -3,17 +3,26 @@ name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
ci:
name: Test on node ${{ matrix.node_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
node_version: [8, 10, 12]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node_version }}
uses: actions/setup-node@v1
with:
version: 10.x
- name: npm install, build, and test
version: ${{ matrix.node_version }}
- name: Use Yarn 1.17.2
run: |
npm install
npm test
npm install -g yarn@1.17.2
- name: yarn build
run: |
yarn install
yarn lint
yarn build