Skip to content

Commit

Permalink
enhancement(portal): include new gh workflow for portal tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tzal3x committed Jul 22, 2024
1 parent 4ba9b85 commit e438a1e
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/portal-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Portal Unit Tests

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Change directory to portal
run: cd portal

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '22'

- name: Install dependencies
run: pnpm install

- name: Run tests
run: pnpm run test

0 comments on commit e438a1e

Please sign in to comment.