build(deps-dev): bump eslint-config-next from 14.2.3 to 15.1.3 #123
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: E2E Testing | |
on: [push] | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: yarn | |
- name: Run linters | |
run: yarn lint | |
- name: Check build | |
run: yarn build | |
- name: e2e tests | |
run: yarn test:e2e |