Skip to content

658 evaluator unable to run tool when using metadata file url or upload as input #1334

658 evaluator unable to run tool when using metadata file url or upload as input

658 evaluator unable to run tool when using metadata file url or upload as input #1334

Workflow file for this run

name: ci
on:
push:
branches:
- master
- oeb-widgets-dev
pull_request:
branches:
- master
- oeb-widgets-dev
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: [16]
steps:
- name: Checkout πŸ›Ž
uses: actions/checkout@master
- name: Setup node env πŸ—
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
check-latest: true
- name: Cache node_modules πŸ“¦
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install dependencies πŸ‘¨πŸ»β€πŸ’»
run: npm ci --prefer-offline --no-audit --legacy-peer-deps
- name: Run linter πŸ‘€
run: npm run lint
- name: Run tests πŸ§ͺ
run: npm run test:unit:ci -- -u
- name: codecov
run: npx codecov
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}