chore(deps): bump ckeditor4 from 4.24.0 to 4.25.0 #160
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Pull-Request | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- develop | |
- master | |
jobs: | |
ci_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
registry-url: https://registry.npmjs.org/ | |
- name: Make sure npm is latest | |
run: npm install -g npm@latest | |
- name: Install dependencies | |
run: npm clean-install | |
- name: Build | |
run: npm run build:lib | |
- name: Lint | |
run: npm run lint | |
- name: license-check | |
run: npm run license-check | |
- name: Test | |
run: npm run test:lib:ci |