* create component * import styles correctly * import component * show code editor element on the template workspace * wire input event * sync code property with editor value * move workers to a separate file * create class for code editor * add very simple insert method * focus after insert * make scroll bar bit nicer * add markdown example and fancier template * make insert work with multiple cursors and selections * now really make it works with selections and multiple cursors * map options * add hack to fix the jumpy cursor * Observe themes * add own model for range, return array of ranges from find * add backoffice-fit dark mode * add theme story * add themes folder * add new methods insertAtPosition getValueInRange select * add documentation to editor class * add docs * rename file * rename donut files * cleanup * add some more imports * test heap size fix * heap error test 2 * fix imports * node fail error test * rename --------- Co-authored-by: Mads Rasmussen <madsr@hey.com>
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
|
|
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
|
|
|
|
name: Build and test
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
# Allows GitHub to use this workflow to validate the merge queue
|
|
merge_group:
|
|
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
NODE_OPTIONS: --max_old_space_size=16384
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
matrix:
|
|
node-version: [18.x]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: 'npm'
|
|
- run: npm ci --no-audit --no-fund --prefer-offline
|
|
- run: npm run lint
|
|
- run: npm run build
|
|
# - run: npm run build:libs
|
|
- run: sudo npx playwright install-deps
|
|
- run: npm test
|
|
- name: Upload Code Coverage reports
|
|
uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: code-coverage
|
|
path: coverage/
|
|
retention-days: 30
|
|
# Commented out since it is outdated and is quite spammy
|
|
# - name: Report code coverage
|
|
# uses: zgosalvez/github-actions-report-lcov@v2
|
|
# if: always()
|
|
# continue-on-error: true
|
|
# with:
|
|
# coverage-files: coverage/lcov.info
|
|
# artifact-name: code-coverage-report
|
|
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# working-directory: ./
|