Skip to content

chore: Add test workflow. #1

chore: Add test workflow.

chore: Add test workflow. #1

Workflow file for this run

name: test
# Controls when the action will run.
# Triggers the workflow on all pushes, except on tag creation.
on:
push:
branches:
- '**'
tags-ignore:
- '**'
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- name: Setup 🔧
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
- name: Install 📦
run: yarn install
- name: Test ✅
run: yarn coverage
- name: Build ⚙️
run: yarn build