--- kind: pipeline name: node-16-lts steps: - name: test image: node:16 commands: - curl https://bun.sh/install | bash - export BUN_INSTALL="$HOME/.bun" - export PATH="$BUN_INSTALL/bin:$PATH" - bun run ../test-server.js - npm install - npm test --- kind: pipeline name: node-latest steps: - name: test image: node commands: - curl https://bun.sh/install | bash - export BUN_INSTALL="$HOME/.bun" - export PATH="$BUN_INSTALL/bin:$PATH" - bun run ../test-server.js - npm install - npm test