Skip to content

feat: Add migration script + changes #165

feat: Add migration script + changes

feat: Add migration script + changes #165

Workflow file for this run

name: ESLint
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
schedule:
- cron: '42 12 * * 5'
jobs:
eslint:
name: Run ESLint
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "npm"
cache-dependency-path: frontend/apply/package-lock.json
- name: Install dependencies
run: npm install
working-directory: frontend/apply
- name: Run ESLint
run: npm run lint
working-directory: frontend/apply