Skip to content

ci: πŸ’š added test and code scan workflows #2

ci: πŸ’š added test and code scan workflows

ci: πŸ’š added test and code scan workflows #2

Workflow file for this run

name: Test Boyka-CLI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: boyka-cli-test-${{ github.ref }}-1
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: latest
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Check Format
run: pnpm format
- name: Check lint
run: pnpm lint