Skip to content

fix: minor things + release concept #25

fix: minor things + release concept

fix: minor things + release concept #25

Workflow file for this run

name: "🔬 CI status"
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: 🧺 checkout
uses: actions/checkout@v3
- name: 🐱 use .nvmrc
uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: "npm"
- name: 📌 npm install
run: npm ci --prefer-offline --no-audit
- name: 🕵️ npm test
run: npm test