Skip to content

[36] Continuous integration with E2E Testing #7

[36] Continuous integration with E2E Testing

[36] Continuous integration with E2E Testing #7

Workflow file for this run

name: Code Checks
on:
pull_request:
push:
branches: [main]
jobs:
large-files:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check for large files
uses: ppremk/[email protected]
with:
filesizelimit: 5MB
quality-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Install dependencies
run: npm install
- name: Check ESLint
run: npm run lint:check
# TODO: Uncomment when code is formated by Prettier
# - name: Check Prettier
# run: npm run format:check