Add support for external extensions (#2088) (#2107) #2131
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: Nodejs Driver Tests | |
on: | |
push: | |
branches: [ "PG14" ] | |
pull_request: | |
branches: [ "PG14" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: drivers/nodejs/ | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run apache/age docker image | |
run: docker compose up -d | |
- name: Set up Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: latest | |
- name: Install dependencies | |
run: npm install | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm test |