Merge pull request #4 from DeimosPr4/fix-mobile-gh-actions

fix mobile-ui CI
This commit is contained in:
Eduardo Quiros 2022-07-02 11:51:58 -06:00 committed by GitHub
commit fa2cd13b42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 14 deletions

View File

@ -5,28 +5,28 @@ 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
defaults:
run:
working-directory: ./mobile-ui
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