Skip to content

chore: add ci

chore: add ci #1

Workflow file for this run

name: CI
on: [push]
jobs:
testing:
name: πŸ‘€ Testing
runs-on: ubuntu-latest
steps:
- name: πŸ›‘ Cancel Previous Runs
uses: styfle/cancel-workflow-action@0.11.0
- name: ⬇️ Checkout repo
uses: actions/checkout@master
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
node-version: 18
cache: "yarn"
- name: πŸ“¦ Install dependencies
run: yarn install --frozen-lockfile
- name: πŸ”Ž Static testing
run: yarn test:static