From 95c08e9a00c3ffdb75de45c8edbd216d1fcc3a1e Mon Sep 17 00:00:00 2001 From: Wendel Fabian Chinsamy Date: Sun, 8 Oct 2023 12:34:52 +0200 Subject: [PATCH] add demo workflow --- .github/workflows/demo1.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/demo1.yml diff --git a/.github/workflows/demo1.yml b/.github/workflows/demo1.yml new file mode 100644 index 0000000..b8b9b17 --- /dev/null +++ b/.github/workflows/demo1.yml @@ -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..." \ No newline at end of file