Skip to content

ci: setup GitHub workflows and dependabot #3

ci: setup GitHub workflows and dependabot

ci: setup GitHub workflows and dependabot #3

Workflow file for this run

name: Test
env:
FORCE_COLOR: 1
on:
push:
branches:
- master
tags:
- "*"
pull_request:
jobs:
install:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build CLI
run: pnpm build
- name: Run Tests
run: pnpm test