Skip to content

add vegan and raw vegan categories #30

add vegan and raw vegan categories

add vegan and raw vegan categories #30

Workflow file for this run

name: Run checks
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
npm-install:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
- name: Use cache for npm 🎁
id: cache-npm
uses: actions/cache@v2
with:
path: |
~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install npm packages 📦
run: |
npm ci