From c10ab27995a9440265bba54cf3890a445551e3ed Mon Sep 17 00:00:00 2001 From: Shaheed ulHaq Date: Wed, 20 Dec 2023 19:19:30 +0500 Subject: [PATCH] Create build-test-deploy.yml --- .github/workflows/build-test-deploy.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/build-test-deploy.yml diff --git a/.github/workflows/build-test-deploy.yml b/.github/workflows/build-test-deploy.yml new file mode 100644 index 0000000..97da329 --- /dev/null +++ b/.github/workflows/build-test-deploy.yml @@ -0,0 +1,15 @@ +name: hello-world +on: push +jobs: + hello-world-job: + runs-on: ubuntu-latest + steps: + - name: Checkout repo code + uses: actions/checkout@v3 + - run: echo "$(cat hello_world.txt)" + - name: use node.js + uses: actions/setup-node@v3 + with: + node-version: '18.x' + - run: npm install + - run: npm run build