Skip to content

Commit

Permalink
feat: introduce platform-test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danh91 committed Jan 27, 2025
1 parent 5aff44b commit 1e175de
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github-private/workflows/platform-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: platform-tests

on: [push]

jobs:
platform-ci:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
submodules: recursive
token: ${{ secrets.GH_PAT }}
- uses: actions/setup-node@v3
with:
node-version: 22.x
- name: Install
run: |
npm install -g corepack
mkdir -p ~/.volta/bin
corepack enable --install-directory ~/.volta/bin
npm install
- name: Test Build
run: |
npm run prisma:generate -w ee/apps/platform
npm run build -w ee/apps/platform

0 comments on commit 1e175de

Please sign in to comment.