Fix issue 2093: pfree() called with a NULL pointer (#2095) (#2103) #2117
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: [ "PG13" ] | |
pull_request: | |
branches: [ "PG13" ] | |
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 |