Skip to content

Commit

Permalink
More attempts to get GitHub CI working
Browse files Browse the repository at this point in the history
  • Loading branch information
voxpelli committed Aug 23, 2019
1 parent b8e06d1 commit 4b672b7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,13 @@ jobs:
with:
version: ${{ matrix.node_version }}
- name: Yarn install
run: yarn install --frozen-lockfile --ignore-engines
run: yarn install --frozen-lockfile
- name: Yarn run build
run: yarn run build --ignore-engines
run: yarn run build
- name: Mocha tests
run: yarn run test:mocha --ignore-engines
working-directory: ./postgres
run: yarn run test:mocha
env:
# use postgres for the host here because we have specified a contaienr for the job.
# use postgres for the host here because we have specified a container for the job.
# If we were running the job on the VM this would be localhost
POSTGRES_HOST: localhost
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} # get randomly assigned published port
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
},
"license": "MIT",
"engines": {
"node": "^10.0.0"
"node": ">=10.0.0"
},
"dependencies": {
"@voxpelli/metadataparser": "^2.0.0",
Expand Down

0 comments on commit 4b672b7

Please sign in to comment.