fix: log file key being logged with proper name and timeout doubled (… #295
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: node | |
on: | |
push: | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
with: | |
submodules: recursive | |
lfs: true | |
- name: Use Node.js 18.x | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: npm | |
cache-dependency-path: consumer-server/package-lock.json | |
- name: install | |
run: npm ci | |
working-directory: consumer-server | |
- name: build | |
run: npm run build | |
working-directory: consumer-server | |
- name: test | |
run: npm run test | |
working-directory: consumer-server |