Release 2.2.4 #267
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: Node.js CI | |
on: [pull_request] | |
jobs: | |
lint_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
cache: 'npm' | |
- name: Install dependencies | |
run: | | |
npm ci | |
npm run build --if-present | |
- name: Test with eslint | |
run: | | |
npm run lint | |
- name: Test Text2Frame | |
run: | | |
npm run test_text2frame | |
- name: Test Frame2Text | |
run: | | |
npm run test_frame2text | |