format yaml file properly
This commit is contained in:
parent
3a2b740ff9
commit
17e199fe74
|
@ -5,28 +5,25 @@ name: Node.js CI
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [ "master" ]
|
branches: ['master']
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "master" ]
|
branches: ['master']
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
node-version: [12.x, 14.x, 16.x]
|
node-version: [12.x, 14.x, 16.x]
|
||||||
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Use Node.js ${{ matrix.node-version }}
|
- name: Use Node.js ${{ matrix.node-version }}
|
||||||
working-directory: ./mobile-ui
|
uses: actions/setup-node@v3
|
||||||
uses: actions/setup-node@v3
|
with:
|
||||||
with:
|
node-version: ${{ matrix.node-version }}
|
||||||
node-version: ${{ matrix.node-version }}
|
cache: 'npm'
|
||||||
cache: 'npm'
|
- run: npm ci
|
||||||
- run: npm ci
|
- run: npm run build --if-present
|
||||||
- run: npm run build --if-present
|
- run: npm test
|
||||||
- run: npm test
|
|
||||||
|
|
Loading…
Reference in New Issue