Spaces:
Configuration error
Configuration error
File size: 710 Bytes
39100fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | version: v1.0
name: database-node
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
blocks:
- name: Test
task:
jobs:
- name: Test (JWT)
commands:
- checkout
- sem-version node 12
- cache restore
- npm install
- cache store
- npm run build --if-present
- npm test
- name: Test (Repl Identity)
commands:
- checkout
- sem-version node 12
- cache restore
- npm install
- cache store
- npm run build --if-present
- USE_FILE=1 npm test
secrets:
- name: replit-database
|