Skip to content

Merge pull request #13 from arkedge/renovate/eslint-config-prettier-9.x #425

Merge pull request #13 from arkedge/renovate/eslint-config-prettier-9.x

Merge pull request #13 from arkedge/renovate/eslint-config-prettier-9.x #425

Workflow file for this run

name: lint and test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: 20
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint ESLint
run: yarn lint:eslint
- name: Lint Prettier
run: yarn lint:prettier
- name: TypeCheck
run: yarn typecheck
- name: Test
run: yarn test