diff options
author | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-12 01:29:44 +0200 |
---|---|---|
committer | Michał Gołębiowski-Owczarek <m.goleb@gmail.com> | 2024-05-15 00:38:40 +0200 |
commit | 99250fe517bf70a8d190b4a32a6633e4776e87fe (patch) | |
tree | 15ae5ed3e155d9570bb083c945fbeddf600e336e /.github/workflows | |
parent | fb19b03dc6438f35b37f0a26e521f605691be728 (diff) | |
download | jquery-ui-99250fe517bf70a8d190b4a32a6633e4776e87fe.tar.gz jquery-ui-99250fe517bf70a8d190b4a32a6633e4776e87fe.zip |
Build: Drop support for Node 10
Ref gh-2249
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/node.js.yml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 468611c35..30e8583fe 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -133,31 +133,3 @@ jobs: - name: Test run: npm run test:unit -- -b safari --jquery ${{ matrix.JQUERY }} --retries 3 - - legacy-build: - runs-on: ubuntu-latest - name: Build on Node 10.x - env: - NODE_VERSION: 10.x - steps: - - name: Checkout - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 - - - name: Use Node.js ${{ env.NODE_VERSION }} - uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 - with: - node-version: ${{ env.NODE_VERSION }} - - - name: Cache - uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.NODE_VERSION }}-npm-lock- - - - name: Install npm dependencies - run: npm install - - - name: Build - run: npm run build |