Skip to content

Add gift guide

Add gift guide #28

Workflow file for this run

name: Unit Tests, Linting and Formatting
on:
push:
branches: [main]
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
tests:
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Linting
run: npm run lint
- name: Unit tests
run: npm run test:unit:ci