change node.literal to literal #1139
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: Editor Unit, Integration Test | |
on: pull_request | |
jobs: | |
test: | |
name: Unit, Integration Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v2 | |
- name: Use Node.js 15.x | |
uses: actions/setup-node@v2.5.1 | |
with: | |
node-version: '15.x' | |
- name: Install | |
run: | | |
npm install | |
- name: build toastmark | |
run: | | |
npm run build toastmark | |
- name: toastmark unit, integration test | |
run: | | |
npm run test:ci toastmark | |
- name: editor unit, integration test | |
run: | | |
npm run test:ci editor |