Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/actions/load/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,14 @@ runs:
rm -r "$(pwd)"/*

- name: Download artifact
uses: actions/download-artifact@v5
uses: Wandalen/wretry.action@v3.8.0
with:
path: '${{ runner.temp }}'
name: '${{ inputs.name }}'
action: actions/download-artifact@v7
attempt_limit: 2
attempt_delay: 10000
with: |
path: '${{ runner.temp }}'
name: '${{ inputs.name }}'

- name: 'Untar working directory'
shell: bash
Expand Down
3 changes: 3 additions & 0 deletions .github/actions/unzip-artifact/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ outputs:
runs:
using: 'composite'
steps:
- name: 'Delay waiting for artifacts to be ready'
shell: bash
run: sleep 10
- name: 'Download artifact'
id: download
uses: actions/github-script@v8
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,11 @@ on:
BROWSERSTACK_ACCESS_KEY:
description: "Browserstack access key"


permissions:
contents: read
actions: read

jobs:
checkout:
name: "Define chunks"
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
pull_request:
types: [opened, synchronize, reopened]

permissions:
contents: read
actions: read

concurrency:
group: test-${{ github.head_ref || github.ref }}
cancel-in-progress: true
Expand Down
2 changes: 2 additions & 0 deletions gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/* eslint-disable no-console */
'use strict';

// test change

var _ = require('lodash');
var argv = require('yargs').argv;
var gulp = require('gulp');
Expand Down
Loading