Skip to content

chore(deps-dev): bump eslint-config-next from 14.2.3 to 14.2.4 #795

chore(deps-dev): bump eslint-config-next from 14.2.3 to 14.2.4

chore(deps-dev): bump eslint-config-next from 14.2.3 to 14.2.4 #795

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint_and_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Install dependencies
run: yarn install
- name: Run eslint
run: yarn lint
env:
CI: true
- name: Run typescript
run: yarn type-check
env:
CI: true
- name: Run build
run: yarn export
env:
CI: true