Skip to content

Commit

Permalink
Merge branch 'FI-35-Add-Testing-to-OAuth2' of https://github.com/Char…
Browse files Browse the repository at this point in the history
…lie059/Flow.IO into FI-35-Add-Testing-to-OAuth2
  • Loading branch information
Charlie059 committed Jan 10, 2024
2 parents d8eb7b2 + 33a91fb commit b583116
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/core_cms_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: core cms tests

on: [push, pull_request]

jobs:
build-and-test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Install dependencies
run: npm install
working-directory: ./@core/cms/

- name: Run tests
run: npm test
working-directory: ./@core/cms/

0 comments on commit b583116

Please sign in to comment.