diff --git a/.github/workflows/pod-tests.yml b/.github/workflows/pod-tests.yml new file mode 100644 index 0000000..9f9f318 --- /dev/null +++ b/.github/workflows/pod-tests.yml @@ -0,0 +1,37 @@ +name: POD Tests + +on: + pull_request: + branches: + - develop + workflow_dispatch: + +jobs: + pod-tests: + runs-on: ubuntu-latest + + steps: + - name: Get Repo + uses: actions/checkout@v4 + + - name: Install Node.JS + uses: actions/setup-node@v4 + with: + node-version: 20 + + - name: Install pnpm + run: npm install -g pnpm + + - name: Navigate to the pods directory + run: | + cd pods + + - name: Install packages + run: | + pnpm install --no-frozen-lockfile + working-directory: pods + + - name: Run create.ts script + run: | + pnpm create.ts + working-directory: pods \ No newline at end of file