Skip to content

move shared workflow code into install-yarn-dependencies reusable w… #11

move shared workflow code into install-yarn-dependencies reusable w…

move shared workflow code into install-yarn-dependencies reusable w… #11

Workflow file for this run

name: scripts
on: [push]
jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/install-yarn-dependencies
- name: Run Prettier
run: yarn start lint.prettier.check
lint:
runs-on: ubuntu-latest
needs: format
steps:
- uses: actions/checkout@v4
- uses: ./.github/workflows/install-yarn-dependencies
- name: Run ESLint
run: yarn start lint.eslint.check