Skip to content

Merge pull request #46 from Sebobo/feature/recent-documents #94

Merge pull request #46 from Sebobo/feature/recent-documents

Merge pull request #46 from Sebobo/feature/recent-documents #94

Workflow file for this run

name: Tests
on:
workflow_dispatch:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
jobs:
build:
runs-on: ubuntu-latest
name: 'CommandBar build'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Lint the sources
run: yarn lint
- name: Build the Neos UI plugin
run: yarn build:ui
- name: Build the backend module plugin
run: yarn build:module
test:
runs-on: ubuntu-latest
name: 'CommandBar tests'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Run tests
run: yarn test:github-actions