Skip to content

Bump micromatch from 4.0.4 to 4.0.8 in /asctb-api #919

Bump micromatch from 4.0.4 to 4.0.8 in /asctb-api

Bump micromatch from 4.0.4 to 4.0.8 in /asctb-api #919

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Validate Pull Request
# Controls when the action will run.
on:
pull_request:
types: ['opened', 'edited', 'synchronize']
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
tests:
name: 'Tests'
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci --legacy-peer-deps
- run: npm run lint
- run: npm run test
- name: ASCT+B API Tests
run: |
npm ci --legacy-peer-deps
npm run lint
working-directory: asctb-api