���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/luckymerchan/layout/default/node_modules/jquery-ui/.github/workflows/ |
name: Grunt tests on: [push, pull_request] jobs: grunt: name: Grunt based tests with Node.js ${{ matrix.node-version }} runs-on: ubuntu-latest strategy: matrix: node-version: [12.x, 14.x] steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - name: Get npm cache directory id: npm-cache-dir run: | echo "::set-output name=dir::$(npm config get cache)" - name: Cache npm dependencies uses: actions/cache@v3 with: path: ${{ steps.npm-cache-dir.outputs.dir }} key: ${{ runner.os }}-node-${{ matrix.node-version }}-npm-${{ hashFiles('**/package.json') }} restore-keys: | ${{ runner.os }}-node-${{ matrix.node-version }}-npm- ${{ runner.os }}-node-${{ matrix.node-version }}- ${{ runner.os }}-node- ${{ runner.os }}- - name: Install npm dependencies run: npm install # Keep these steps in sync with the default command tasks in our Gruntfile! - name: Run lint run: node_modules/.bin/grunt lint - name: Run RequireJS run: node_modules/.bin/grunt requirejs - name: Run Qunit run: node_modules/.bin/grunt test valid: name: Build & tests needs: grunt runs-on: ubuntu-latest steps: - name: Grunt based tests passed run: echo "✅"