build(deps): bump JetBrains/qodana-action from 2024.3.2 to 2024.3.4 #5
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: PR checks | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- "extensions/vscode/**" | |
- "core/**" | |
- "gui/**" | |
- ".github/workflows/**" | |
jobs: | |
install-root: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
id: root-cache | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('package-lock.json') }} | |
- name: Install root dependencies | |
if: steps.root-cache.outputs.cache-hit != 'true' | |
run: npm ci | |
core-checks: | |
needs: install-root | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
id: root-cache | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/cache@v4 | |
id: core-cache | |
with: | |
path: core/node_modules | |
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }} | |
- name: Install core dependencies | |
if: steps.core-cache.outputs.cache-hit != 'true' | |
run: | | |
cd core | |
npm ci | |
- name: Type check and lint | |
run: | | |
cd core | |
npx tsc --noEmit | |
npm run lint | |
env: | |
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }} | |
gui-checks: | |
needs: [install-root, core-checks] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/cache@v4 | |
with: | |
path: core/node_modules | |
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }} | |
- uses: actions/cache@v4 | |
id: gui-cache | |
with: | |
path: gui/node_modules | |
key: ${{ runner.os }}-gui-node-modules-${{ hashFiles('gui/package-lock.json') }} | |
- name: Install gui dependencies | |
if: steps.gui-cache.outputs.cache-hit != 'true' | |
run: | | |
cd gui | |
npm ci | |
- name: Type check | |
run: | | |
cd gui | |
npx tsc --noEmit | |
binary-checks: | |
needs: [install-root, core-checks] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/cache@v4 | |
with: | |
path: core/node_modules | |
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }} | |
- uses: actions/cache@v4 | |
id: binary-cache | |
with: | |
path: binary/node_modules | |
key: ${{ runner.os }}-binary-node-modules-${{ hashFiles('binary/package-lock.json') }} | |
- name: Install binary dependencies | |
if: steps.binary-cache.outputs.cache-hit != 'true' | |
run: | | |
cd binary | |
npm ci | |
- name: Type check | |
run: | | |
cd binary | |
npx tsc --noEmit | |
vscode-checks: | |
needs: [install-root, core-checks] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: ${{ runner.os }}-root-node-modules-${{ hashFiles('package-lock.json') }} | |
- uses: actions/cache@v4 | |
with: | |
path: core/node_modules | |
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }} | |
- uses: actions/cache@v4 | |
id: vscode-cache | |
with: | |
path: extensions/vscode/node_modules | |
key: ${{ runner.os }}-vscode-node-modules-${{ hashFiles('extensions/vscode/package-lock.json') }} | |
- name: Install vscode dependencies | |
if: steps.vscode-cache.outputs.cache-hit != 'true' | |
run: | | |
cd extensions/vscode | |
npm ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }} | |
- name: Type check and lint | |
run: | | |
cd extensions/vscode | |
npx tsc --noEmit | |
npm run lint | |
core-tests: | |
needs: [core-checks] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
with: | |
path: core/node_modules | |
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }} | |
- name: Run core tests | |
run: | | |
cd core | |
npm test | |
vscode-tests: | |
needs: [vscode-checks, core-checks] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
with: | |
path: extensions/vscode/node_modules | |
key: ${{ runner.os }}-vscode-node-modules-${{ hashFiles('extensions/vscode/package-lock.json') }} | |
- uses: actions/cache@v4 | |
with: | |
path: core/node_modules | |
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }} | |
- name: Install Xvfb for Linux and run e2e tests | |
run: | | |
sudo apt-get install -y xvfb # Install Xvfb | |
Xvfb :99 & # Start Xvfb | |
export DISPLAY=:99 # Export the display number to the environment | |
cd extensions/vscode | |
npm run package | |
npm run e2e:ci | |
gui-tests: | |
needs: [gui-checks, core-checks] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- uses: actions/cache@v4 | |
id: gui-cache | |
with: | |
path: gui/node_modules | |
key: ${{ runner.os }}-gui-node-modules-${{ hashFiles('gui/package-lock.json') }} | |
- uses: actions/cache@v4 | |
with: | |
path: core/node_modules | |
key: ${{ runner.os }}-core-node-modules-${{ hashFiles('core/package-lock.json') }} | |
- name: Install GUI dependencies | |
if: steps.gui-cache.outputs.cache-hit != 'true' | |
run: cd gui && npm ci | |
env: | |
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }} | |
- name: Run gui tests | |
run: | | |
cd gui | |
npm test |