Bump sharp from 0.31.3 to 0.32.6 in /frontend (#1295) #1260
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Workflow for running several tests for PRs and pushes to the main branch for | |
# napari hub frontend code. | |
name: Frontend Tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'frontend/**' | |
pull_request: | |
branches: | |
- '**' | |
paths: | |
- 'frontend/**' | |
defaults: | |
run: | |
working-directory: frontend/ | |
jobs: | |
# Runs several tests on the frontend codebase to check for code style, | |
# formatting, best practices, and run unit/integration tests. | |
tests: | |
name: ${{ matrix.name }} | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.5.x | |
- name: Get Yarn cache directory path | |
id: yarn-cache-dir-path | |
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | |
# cache both yarn-lock and node_modules | |
- name: Setup Yarn cache | |
uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: | | |
**/node_modules | |
${{ steps.yarn-cache-dir-path.outputs.dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
# --prefer-offline forces yarn to use cache if available | |
- name: Install dependencies with yarn | |
run: yarn install --prefer-offline --frozen-lockfile | |
- name: ${{ matrix.name }} | |
run: ${{ matrix.run }} | |
# Run linters and tests as matrix strategies so that they: | |
# 1. Show up as separate GitHub checks. | |
# 2. So we can reuse the Node.js and Yarn installation steps | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- name: prettier | |
run: yarn lint:prettier | |
- name: stylelint | |
run: yarn lint:stylelint | |
- name: eslint | |
run: yarn lint:eslint | |
- name: jest | |
run: yarn test | |
- name: tsc | |
run: yarn type-check |