Skip to content

Added multiple events manually #9

Added multiple events manually

Added multiple events manually #9

Workflow file for this run

name: test project
on: [push, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: test workflow
run: echo "Testing workflow"
- name: Get code
uses: actions/checkout@v4
- name: install NodeJs
uses: actions/setup-node@v4
with:
node-version: 18
- name: install dependencies
run: npm ci
- name: Run tests
run: npm test
deploy:
needs: test
runs-on: ubuntu-latest
steps:
- name: test workflow
run: echo "Testing workflow"
- name: Get code
uses: actions/checkout@v4
- name: install NodeJs
uses: actions/setup-node@v4
with:
node-version: 18
- name: install dependencies
run: npm ci
- name: Run tests
run: npm test
- name: Build Project
run: npm run build
- name: deploy
run: echo "Deploying ...."