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