Skip to content

dependency array bug fix #14

dependency array bug fix

dependency array bug fix #14

Workflow file for this run

name: Github Topic Manager CI
on:
push:
branches: [ "production" ]
pull_request:
branches: [ "production" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout(Clone) repository
uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm install --legacy-peer-deps
- run: npm run build --if-present
# - name: Test
# run: npm test