Bump browser TS version to 4.x by aligning browser TS version with neo4j-arc's min version #194
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: 'Arc PR e2e tests' | |
defaults: | |
run: | |
working-directory: src/neo4j-arc | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version-file: '.nvmrc' | |
- run: npm -g install yarn | |
- run: yarn install --frozen-lockfile | |
- run: yarn test | |
- run: yarn build |