From 5560c86070c8be08f76801bbc7e525eea4fc0cf6 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Wed, 24 Feb 2021 18:32:05 +0200 Subject: Bundlewatch: stop ignoring dependabot branches (#33192) --- .github/workflows/bundlewatch.yml | 2 -- 1 file changed, 2 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml index bebf01351..b2b1fa109 100644 --- a/.github/workflows/bundlewatch.yml +++ b/.github/workflows/bundlewatch.yml @@ -2,8 +2,6 @@ name: Bundlewatch on: push: - branches-ignore: - - "dependabot/**" pull_request: env: -- cgit v1.2.3 From 205e2cae701209268f5b715b20cb544c1efd54e2 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 2 Mar 2021 16:09:49 +0200 Subject: CodeQL: skip dependabot PRs too (#33130) --- .github/workflows/codeql.yml | 1 + 1 file changed, 1 insertion(+) (limited to '.github/workflows') diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 469a5a4fc..13e2eb598 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -11,6 +11,7 @@ on: branches: - main - v4-dev + - "!dependabot/**" schedule: - cron: "0 2 * * 5" -- cgit v1.2.3 From b3916ebdd4eb3192490c590a5b5f72d24243ae3f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Thu, 22 Apr 2021 13:51:03 +0300 Subject: JS tests: add Node.js 16 (#33720) --- .github/workflows/js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 0a4fe259a..9a2d92f94 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - node: [10, 12, 14] + node: [10, 12, 14, 16] steps: - name: Clone repository -- cgit v1.2.3 From c3ad760cd7f7d8c5be80ec067338a9c526679604 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 11 May 2021 08:34:21 +0300 Subject: CI: remove Node.js 10 (#33923) Node.js 10 is EOL since 30/04/2021 --- .github/workflows/js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 9a2d92f94..4303165dc 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - node: [10, 12, 14, 16] + node: [12, 14, 16] steps: - name: Clone repository -- cgit v1.2.3 From 3f3f8dddb8c44e35355247a6ee5952aac4ca5fcc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jul 2021 08:29:28 +0300 Subject: Bump coverallsapp/github-action from 1.1.2 to 1.1.3 (#34491) Bumps [coverallsapp/github-action](https://github.com/coverallsapp/github-action) from 1.1.2 to 1.1.3. - [Release notes](https://github.com/coverallsapp/github-action/releases) - [Commits](https://github.com/coverallsapp/github-action/compare/v1.1.2...1.1.3) --- updated-dependencies: - dependency-name: coverallsapp/github-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: XhmikosR --- .github/workflows/js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows') diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 4303165dc..10d94f6fd 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -46,7 +46,7 @@ jobs: run: npm run js-test - name: Run Coveralls - uses: coverallsapp/github-action@v1.1.2 + uses: coverallsapp/github-action@1.1.3 if: matrix.node == 14 with: github-token: "${{ secrets.GITHUB_TOKEN }}" -- cgit v1.2.3 From 2721f6042bc8106e35c3db21f382fc968bfce931 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 19 Jul 2021 18:38:49 +0300 Subject: CI: make use of the `actions/setup-node`'s `cache` option (#34453) --- .github/workflows/browserstack.yml | 9 +-------- .github/workflows/bundlewatch.yml | 9 +-------- .github/workflows/css.yml | 9 +-------- .github/workflows/docs.yml | 9 +-------- .github/workflows/js.yml | 9 +-------- .github/workflows/lint.yml | 9 +-------- 6 files changed, 6 insertions(+), 48 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index bdbc16089..ffa594a77 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -21,14 +21,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: "${{ env.NODE }}" - - - name: Set up npm cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + cache: npm - name: Install npm dependencies run: npm ci diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml index b2b1fa109..c212290df 100644 --- a/.github/workflows/bundlewatch.yml +++ b/.github/workflows/bundlewatch.yml @@ -20,14 +20,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: "${{ env.NODE }}" - - - name: Set up npm cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + cache: npm - name: Install npm dependencies run: npm ci diff --git a/.github/workflows/css.yml b/.github/workflows/css.yml index 1f394c65e..48f11d459 100644 --- a/.github/workflows/css.yml +++ b/.github/workflows/css.yml @@ -22,14 +22,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: "${{ env.NODE }}" - - - name: Set up npm cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + cache: npm - name: Install npm dependencies run: npm ci diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index badaad744..cc5f4bd6d 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -22,17 +22,10 @@ jobs: uses: actions/setup-node@v2 with: node-version: "${{ env.NODE }}" + cache: npm - run: java -version - - name: Set up npm cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - - name: Install npm dependencies run: npm ci diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index 10d94f6fd..266b1576d 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -27,14 +27,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: ${{ matrix.node }} - - - name: Set up npm cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ matrix.node }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + cache: npm - name: Install npm dependencies run: npm ci diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f4c288ec7..153ad6f22 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,14 +22,7 @@ jobs: uses: actions/setup-node@v2 with: node-version: "${{ env.NODE }}" - - - name: Set up npm cache - uses: actions/cache@v2 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node-${{ env.NODE }}-${{ hashFiles('package.json') }}-${{ hashFiles('package-lock.json') }} + cache: npm - name: Install npm dependencies run: npm ci -- cgit v1.2.3