Skip to content

Commit

Permalink
TASK: Add github action to build plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebobo committed Dec 2, 2022
1 parent eb2a2ea commit d14253f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
@@ -0,0 +1,24 @@
name: Tests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:
runs-on: ubuntu-latest
name: 'Build Neos CMS CKEditor hyphens plugin'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'

- name: Install dependencies
run: yarn

- name: Build the plugin
run: yarn build

0 comments on commit d14253f

Please sign in to comment.