????

Your IP : 18.218.213.153


Current Path : C:/inetpub/vhost/redmine/plugins/redmine_wysiwyg_editor/.github/workflows/
Upload File :
Current File : C:/inetpub/vhost/redmine/plugins/redmine_wysiwyg_editor/.github/workflows/test.yml

name: Run tests

on: [push]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        node: [ '14', '16', '18' ]
    name: Node ${{ matrix.node }}
    steps:
      - name: Clone repository
        uses: actions/checkout@v3

      - name: Set up Node.js
        uses: actions/setup-node@v3
        with:
          node-version: ${{ matrix.node }}

      - name: Install Node packages
        run: npm install

      - name: Run ESLint
        run: npm run eslint

      - name: Run tests
        run: npm run test