Skip to content

feat(AIADT-10): Persist todos in sessionStorage with hydration, persi… #26

feat(AIADT-10): Persist todos in sessionStorage with hydration, persi…

feat(AIADT-10): Persist todos in sessionStorage with hydration, persi… #26

Workflow file for this run

name: CI
on:
push:
branches: ['**']
pull_request:
branches: ['main', 'master']
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint
- name: Format Check
run: npm run format:check
- name: Build
run: npm run build
- name: Test
run: npm run test