Skip to content

feat: add CSV import functionality with data validation #2

feat: add CSV import functionality with data validation

feat: add CSV import functionality with data validation #2

Workflow file for this run

name: Run CI
on:
pull_request:
branches:
- "*"
push:
branches: [main]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ '22.x' }}
cache: npm
- name: Install npm dependencies
run: npm install
- name: Run CI
run: npm run ci