update api-key for TinyMCE Editor #69
Workflow file for this run
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: Code Checking | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
code-checking: | |
name: Lint, Type check and Unit tests | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 2 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Linting | |
run: npm run lint | |
- name: Checking TypeScript | |
run: npm run typecheck |