Skip to content

usegalaxy.eu use cases 2024: Blog post of Mona Malek Mohammadi #2726

usegalaxy.eu use cases 2024: Blog post of Mona Malek Mohammadi

usegalaxy.eu use cases 2024: Blog post of Mona Malek Mohammadi #2726

Workflow file for this run

name: Code Quality Checks
on: pull_request
concurrency:
group: lint-${{ github.head_ref }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install project dependencies
run: yarn --prefer-offline
- name: Lint
run: yarn lint
- name: Formatting
run: yarn format:check