Skip to content
This repository has been archived by the owner on Jan 7, 2025. It is now read-only.

chore(ci): run tests in gh workflows #72

chore(ci): run tests in gh workflows

chore(ci): run tests in gh workflows #72

Workflow file for this run

name: CI
on:
push:
branches:
- "**"
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Setup Node
uses: actions/setup-node@v4.0.1
with:
node-version: 20
cache: npm
- name: Install Dependencies
run: npm ci
- name: Format
run: npm run format
- name: Lint
run: npm run lint
- name: Test
run: npm run test
- name: Build
run: npm run build