Skip to content

Commit

Permalink
Adds running all tests in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
AdiHarif committed Oct 2, 2024
1 parent 2797e7a commit c282d4e
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Run All Tests

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

jobs:
build:
runs-on: ubuntu
container: adiharif/graphir-dep

steps:
- uses: actions/checkout@v4

- name: Install Git Dependencies
run: git submodule update --init --recursive

- name: Install NPM Packages
run: npm ci

- name: Build Project
run: npm run build

- name: Run Tests
run: npm test

0 comments on commit c282d4e

Please sign in to comment.