Skip to content

build(deps): bump eslint from 8.56.0 to 9.11.1 #370

build(deps): bump eslint from 8.56.0 to 9.11.1

build(deps): bump eslint from 8.56.0 to 9.11.1 #370

name: Pull Request Test
on: pull_request
env:
NEXT_PUBLIC_SITE_NAME: 'Example'
NEXT_PUBLIC_SITE_URL: 'https://example.com'
jobs:
lint_and_test:
name: Lint and Test
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
- name: Install Dependencies
run: yarn install --immutable
- name: Lint Code
run: yarn lint
- name: Run Tests
run: yarn test
- name: Build
run: yarn build