From f5df4ef0a51d1fd70fd65e0e113f9ca893792a69 Mon Sep 17 00:00:00 2001 From: SteakFisher Date: Fri, 19 Jul 2024 17:08:45 +0530 Subject: [PATCH] Build test action, no buildy no pushy --- .github/workflows/buildTest.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/buildTest.yml diff --git a/.github/workflows/buildTest.yml b/.github/workflows/buildTest.yml new file mode 100644 index 0000000..4c21f30 --- /dev/null +++ b/.github/workflows/buildTest.yml @@ -0,0 +1,26 @@ +name: Build Tests +on: [push, pull_request] + +jobs: + build: + name: Build and Test + timeout-minutes: 15 + runs-on: ubuntu-latest + + steps: + - name: Check out code + uses: actions/checkout@v4 + with: + fetch-depth: 2 + + - name: Setup Node.js environment + uses: actions/setup-node@v4 + with: + node-version: 20 + cache: 'npm' + + - name: Install dependencies + run: npm install + + - name: Build + run: npm run build \ No newline at end of file