Additional password support #541
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: Tests (Heroku) | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test-heroku: | |
name: Test on Heroku | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node v16 | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
node-version: '16' | |
- run: npm ci | |
- run: npm run test:heroku |