diff options
author | Mario <mario@mariovavti.com> | 2021-10-08 12:24:19 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-10-08 12:24:19 +0000 |
commit | e6dac085cb1d601da1fc63bfd59d811612fa6ef4 (patch) | |
tree | f5b704b613c9c8d347857b4e7f8dd0b19cdd7df3 /vendor/blueimp/jquery-file-upload/.github/workflows | |
parent | f5f357060bf0ebcb0b8352519375953d993437e7 (diff) | |
download | volse-hubzilla-e6dac085cb1d601da1fc63bfd59d811612fa6ef4.tar.gz volse-hubzilla-e6dac085cb1d601da1fc63bfd59d811612fa6ef4.tar.bz2 volse-hubzilla-e6dac085cb1d601da1fc63bfd59d811612fa6ef4.zip |
update composer libs
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/.github/workflows')
-rw-r--r-- | vendor/blueimp/jquery-file-upload/.github/workflows/test.yml | 22 |
1 files changed, 9 insertions, 13 deletions
diff --git a/vendor/blueimp/jquery-file-upload/.github/workflows/test.yml b/vendor/blueimp/jquery-file-upload/.github/workflows/test.yml index 945286b6e..0153ebdf5 100644 --- a/vendor/blueimp/jquery-file-upload/.github/workflows/test.yml +++ b/vendor/blueimp/jquery-file-upload/.github/workflows/test.yml @@ -5,20 +5,16 @@ on: [push, pull_request] jobs: lint: runs-on: ubuntu-latest + strategy: + matrix: + node-version: [14, 16] steps: - uses: actions/checkout@v2 - - name: Setup Node.js - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: 12.x - - name: npm install - run: npm install - env: - CI: true - - name: lint - run: npm run lint - env: - CI: true + node-version: ${{ matrix.node-version }} + - run: npm install + - run: npm run lint mocha: runs-on: ubuntu-latest @@ -55,7 +51,7 @@ jobs: run: docker-compose down -v - name: Upload reports if: always() - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v2 with: name: reports path: wdio/reports @@ -78,7 +74,7 @@ jobs: run: docker-compose down -v - name: Upload reports if: always() - uses: actions/upload-artifact@master + uses: actions/upload-artifact@v2 with: name: reports path: wdio/reports |