diff options
author | Mario <mario@mariovavti.com> | 2021-11-09 09:10:19 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-11-09 09:10:19 +0000 |
commit | fe7ecede700fe04631d23f36473e697ce2b364dc (patch) | |
tree | e713fc39dba500a25cb2acf8561e286fb8b41ff0 /vendor/blueimp/jquery-file-upload/.github | |
parent | 42de18d96d201d74e5df3ed1b8f6132cb00357b6 (diff) | |
parent | 089708ab9f90309a0c27ae633cf8f2604fce1170 (diff) | |
download | volse-hubzilla-6.4.tar.gz volse-hubzilla-6.4.tar.bz2 volse-hubzilla-6.4.zip |
Merge branch '6.4RC'6.4
Diffstat (limited to 'vendor/blueimp/jquery-file-upload/.github')
-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 |