Replace template1
with postgres:///template1
(#227)
#249
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: Linting | |
on: [push, pull_request] | |
env: | |
CI: true | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- run: yarn --frozen-lockfile | |
- run: yarn clean | |
- run: yarn prepack | |
- run: yarn lint | |
- run: yarn lint:deps |