Skip to content
Closed

POD #128

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/pod-tests.yml
Original file line number Diff line number Diff line change
@@ -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
Loading