Skip to content

Commit

Permalink
add demo workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendel Fabian Chinsamy authored and Wendel Fabian Chinsamy committed Oct 8, 2023
1 parent 27abb5c commit 95c08e9
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/demo1.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Events Demo 1
on: [push]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Output event data
run: echo "${{ toJson(github.event) }}"
- name: Get code
uses: actions/checkout@v3
- name: Install dependencies
run: npm ci
- name: Test code
run: npm run test
- name: Build code
run: npm run build
- name: Deploy project
run: echo "Deploying..."

0 comments on commit 95c08e9

Please sign in to comment.