19 lines
313 B
YAML
19 lines
313 B
YAML
# Run pipeline on pushes to main
|
|
when:
|
|
event: push
|
|
branch: main
|
|
|
|
steps:
|
|
- name: install
|
|
image: node:18-alpine
|
|
commands:
|
|
- echo "🔧 Installing dependencies..."
|
|
- npm install
|
|
|
|
- name: test
|
|
image: node:18-alpine
|
|
commands:
|
|
- echo "🧪 Running tests...."
|
|
- npm test
|
|
|