Skip to content

OpenCV Package Updates #80

OpenCV Package Updates

OpenCV Package Updates #80

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Frontend test
on:
pull_request:
branches:
- main
jobs:
frontend-test:
runs-on: ubuntu-latest
steps:
- name: 🛎 Checkout
uses: actions/checkout@v4
- name: Get yarn cache path
id: yarn-cache-dir-path
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: ⚡ NPM Cache
uses: actions/cache@v4
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
- name: 🔧 Install dependencies
run: yarn
- name: Check lint
run: yarn lint
- name: Pretend we have data.json and run tests
run: cp public/test-file.json public/data.json && yarn test