Skip to content

Commit

Permalink
Create test.yaml
Browse files Browse the repository at this point in the history
Signed-off-by: NxPKG <116948796+NxPKG@users.noreply.github.com>
  • Loading branch information
NxPKG committed Nov 13, 2023
1 parent 62ef77f commit 95ef490
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yaml
@@ -0,0 +1,28 @@
name: CI

on:
pull_request:
push:
branches:
- 'main'
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
suite: ['base', 'main:suite-1', 'main:suite-2', 'fiori']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'

- name: Install Dependencies
run: yarn --frozen-lockfile

- name: Build
run: yarn build

- name: Test
run: yarn test:${{ matrix.suite }}

0 comments on commit 95ef490

Please sign in to comment.