mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-15 19:27:51 +01:00
50 lines
1.1 KiB
YAML
50 lines
1.1 KiB
YAML
name: Test @notesnook/editor
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "master"
|
|
paths:
|
|
- "packages/editor/**"
|
|
# re-run workflow if workflow file changes
|
|
- ".github/workflows/editor.tests.yml"
|
|
pull_request:
|
|
branches:
|
|
- "master"
|
|
paths:
|
|
- "packages/editor/**"
|
|
# re-run workflow if workflow file changes
|
|
- ".github/workflows/editor.tests.yml"
|
|
types:
|
|
- "ready_for_review"
|
|
- "opened"
|
|
- "synchronize"
|
|
- "reopened"
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup Node
|
|
uses: ./.github/actions/setup-node-with-cache
|
|
|
|
- name: Install packages
|
|
run: |
|
|
npm ci --ignore-scripts --prefer-offline --no-audit
|
|
npm run bootstrap -- --scope=editor
|
|
|
|
- name: Setup environment
|
|
run: |
|
|
echo "NX_CLOUD_ACCESS_TOKEN=${{ secrets.NX_CLOUD_ACCESS_TOKEN }}" >> $GITHUB_ENV
|
|
|
|
- name: Build editor
|
|
run: npm run tx @notesnook/editor:build
|
|
|
|
- name: Run all @notesnook/editor tests
|
|
run: npm run tx @notesnook/editor:test
|