Skip to content

add link to favorites #53

add link to favorites

add link to favorites #53

Workflow file for this run

name: run tests
on:
push:
branches:
- main
workflow_call: # called from build.yml
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: 📦 Install dependencies
run: npm install
- name: ✅ Run tests
run: npm run ci-test