Skip to content

[cart] [new] [refactor] Add feature to auto restore from cart + Minor… #9

[cart] [new] [refactor] Add feature to auto restore from cart + Minor…

[cart] [new] [refactor] Add feature to auto restore from cart + Minor… #9

Workflow file for this run

name: CI
on: [ push, pull_request ]
jobs:
prettier:
name: Prettier Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Check code formatting
run: npx prettier --check ./src
eslint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Run ESLint
run: npm run lint
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-node
- name: Run tests
run: npm test