chore(deps): update dependency eslint-config-love to v117 #942
Workflow file for this run
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
name: Checks | |
on: | |
- push | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version-file: package.json | |
cache: yarn | |
cache-dependency-path: yarn.lock | |
- name: Install modules | |
run: corepack yarn | |
- name: Run lint check | |
run: corepack yarn run lint | |
- name: Run format check | |
run: corepack yarn run check:format | |
- name: Run type check | |
run: corepack yarn run check:types | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4 | |
with: | |
node-version-file: package.json | |
cache: yarn | |
cache-dependency-path: yarn.lock | |
- name: Install modules | |
run: corepack yarn | |
- name: Run tests | |
run: corepack yarn run test |