Skip to content

[ENG-1253] Allow using local builds of Oso CLI #127

[ENG-1253] Allow using local builds of Oso CLI

[ENG-1253] Allow using local builds of Oso CLI #127

Workflow file for this run

name: Test VSCode Extension
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
ci:
name: Fmt / Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- name: Install yarn
run: npm install -g yarn
- name: Install dependencies
run: yarn install
- name: Check formatting of JS library
run: yarn run fmtcheck
- name: Typecheck
run: yarn run typecheck
- name: Lint JS library
run: yarn run lint