Skip to content

add tests for github utils #9

add tests for github utils

add tests for github utils #9

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
matrix:
node-version: [20.x, 22.x]
name: Run all tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: yarn
- run: yarn install
- name: Lint
run: yarn lint
- name: Type checking
run: yarn type-check
- name: Run unit tests
run: yarn test