diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..566fcc0 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,29 @@ +name: application demo workflow + +on: + push: + branches: + - main + - feature/** + + pull_request: + branches: + - main + + +jobs: + demo: + name: Demo job + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Gretting + run: echo "hello word" + + - name: list file + run: ls -l + + - name: read file + run: cat package.json