fix(rnd): Disable unused prisma connection on pyro API Server process… #3
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: AutoGPT Builder CI | |
on: | |
push: | |
branches: [ master ] | |
paths: | |
- '.github/workflows/autogpt-builder-ci.yml' | |
- 'rnd/autogpt_builder/**' | |
pull_request: | |
paths: | |
- '.github/workflows/autogpt-builder-ci.yml' | |
- 'rnd/autogpt_builder/**' | |
defaults: | |
run: | |
shell: bash | |
working-directory: rnd/autogpt_builder | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '21' | |
- name: Install dependencies | |
run: | | |
npm install | |
- name: Run lint | |
run: | | |
npm run lint |