Skip to content

Update bos-cli package and setup (#3) #3

Update bos-cli package and setup (#3)

Update bos-cli package and setup (#3) #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
sanity_checks:
name: Sanity Checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run code formatting check
run: npm run fmt:check
- name: Run linting
run: npm run lint