chore: merge upstream updates #39
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
# This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Studio Unit Tests & Build Check | |
on: | |
push: | |
branches: [foxgis] | |
paths: | |
- 'apps/studio/**' | |
- 'package-lock.json' | |
pull_request: | |
branches: [foxgis] | |
paths: | |
- 'apps/studio/**' | |
- 'package-lock.json' | |
# Cancel old builds on new commit for same workflow + branch/PR | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
check: | |
# Uses larger hosted runner as it significantly decreases build times | |
runs-on: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
sparse-checkout: | | |
apps/studio | |
packages | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install deps | |
run: npm ci | |
working-directory: ./ | |
- name: Run Tests | |
env: | |
# Default is 2 GB, increase to have less frequent OOM errors | |
NODE_OPTIONS: '--max_old_space_size=3072' | |
run: npm run test:studio | |
working-directory: ./ |