Test (Mac) #40
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test (Mac) | |
on: | |
workflow_dispatch: | |
inputs: | |
sha: | |
desciption: 'The test commit SHA or ref' | |
required: true | |
default: 'master' | |
merged_sha: | |
description: 'The merge commit SHA' | |
deploy_run_id: | |
description: 'The ID of a deployment workspace run with artifacts' | |
jobs: | |
test: | |
runs-on: macos-latest | |
environment: test-server | |
steps: | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
await github.rest.repos.createCommitStatus({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
sha: context.payload.inputs.sha, | |
context: context.workflow, | |
state: 'pending', | |
target_url: `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}` | |
}); | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{github.event.inputs.merged_sha || github.event.inputs.sha}} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
const delay = ms => new Promise(resolve => setTimeout(resolve, ms)); | |
let artifacts = {}; | |
for(let i = 0;i<36&&!artifacts.total_count;i++,await delay(5000)) { | |
try { | |
({ data: artifacts } = await github.rest.actions.listWorkflowRunArtifacts({ | |
repo: context.repo.repo, | |
owner: context.repo.owner, | |
run_id: context.payload.inputs.deploy_run_id | |
})); | |
} | |
catch (e) { | |
console.log(e); | |
} | |
} | |
const { data: artifact } = await github.request(artifacts.artifacts.find(artifact=> artifact.name === 'npm').archive_download_url); | |
require('fs').writeFileSync(require('path').join(process.env.GITHUB_WORKSPACE, 'package.zip'), Buffer.from(artifact)) | |
- run: | | |
unzip package.zip | |
tar --strip-components=1 -xzf testcafe-*.tgz | |
- name: Get npm cache directory | |
id: npm-cache-dir | |
run: | | |
echo "::set-output name=dir::$(npm config get cache)" | |
- uses: actions/cache@v3 | |
id: npm-cache # use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true' | |
with: | |
path: ${{ steps.npm-cache-dir.outputs.dir }} | |
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-node- | |
- run: npm ci | |
- run: npx gulp testNoBuild | |
timeout-minutes: 60 | |
env: | |
SAUCE_USERNAME: ${{ secrets.SAUCE_USERNAME }} | |
SAUCE_ACCESS_KEY: ${{ secrets.SAUCE_ACCESS_KEY }} | |
- uses: actions/github-script@v6 | |
with: | |
script: | | |
await github.rest.repos.createCommitStatus({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
sha: context.payload.inputs.sha, | |
context: context.workflow, | |
state: 'success', | |
target_url: `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}` | |
}); | |
- uses: actions/github-script@v6 | |
if: failure() || cancelled() | |
with: | |
script: | | |
await github.rest.repos.createCommitStatus({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
sha: context.payload.inputs.sha, | |
context: context.workflow, | |
state: 'failure', | |
target_url: `https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}` | |
}); |