Add new external baselayers and update neo4 to neo11 #90
Workflow file for this run
This file contains hidden or 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: Build Check | |
| on: | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set node for use | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: '18' | |
| - name: Install deps | |
| run: npm ci | |
| - name: Verify project builds | |
| run: npm run build |