Skip to content

fixed line breaks in txt files #740

fixed line breaks in txt files

fixed line breaks in txt files #740

Workflow file for this run

name: Test
on:
- push
jobs:
run-tests:
name: Run Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- "14"
- "16"
- "18"
steps:
- name: Check out Git repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install Node.js dependencies
run: |
npm install npm@latest -g
npm ci
- name: Compilation
run: npm run build
- name: Test code
run: npm run test