Support starting dashboard edition from the command palette #16
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: ~ | |
jobs: | |
linters: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install devbox | |
uses: jetify-com/[email protected] | |
with: | |
enable-cache: 'true' | |
- name: Install vendors | |
run: devbox run yarn install --frozen-lockfile | |
- name: Compile codebase | |
run: devbox run yarn run compile | |
- name: Run linters | |
run: devbox run yarn run lint |