Skip to content

fix: withdraw mobile layout #1263

fix: withdraw mobile layout

fix: withdraw mobile layout #1263

Workflow file for this run

name: Node.js CI portal
on:
pull_request:
paths:
- 'projects/portal/**'
- 'projects/shared/**'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm i -g npm@8.19.4
- run: npm ci
- run: npm run build --if-present -- --project=portal
- run: npm run test -- --project=portal
env:
CI: true