Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
96 lines
2.3 KiB
YAML
96 lines
2.3 KiB
YAML
name: Integration Tests
|
|
|
|
# See: https://docs.github.com/en/actions/reference/events-that-trigger-workflows
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- "__tests__/**"
|
|
- ".github/**"
|
|
- "!.github/workflows/test-integration.ya?ml"
|
|
- "**.md"
|
|
- ".gitignore"
|
|
- "LICENSE"
|
|
pull_request:
|
|
paths-ignore:
|
|
- "__tests__/**"
|
|
- ".github/**"
|
|
- "!.github/workflows/test-integration.ya?ml"
|
|
- "**.md"
|
|
- ".gitignore"
|
|
- "LICENSE"
|
|
schedule:
|
|
# Run every Tuesday at 8 AM UTC to catch breakage caused by external changes.
|
|
- cron: "0 8 * * TUE"
|
|
workflow_dispatch:
|
|
repository_dispatch:
|
|
|
|
jobs:
|
|
defaults:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run action with defaults
|
|
uses: ./ # Use the action from the local path.
|
|
|
|
- name: Run Task
|
|
# Verify that Task was installed
|
|
run: task --version
|
|
|
|
version:
|
|
name: version (${{ matrix.version.input }}, ${{ matrix.runs-on }})
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
runs-on:
|
|
- ubuntu-latest
|
|
- windows-latest
|
|
- macos-latest
|
|
version:
|
|
- input: 2.x
|
|
expected: "Task version: 2.8.1"
|
|
- input: 2.8.x
|
|
expected: "Task version: 2.8.1"
|
|
- input: 3.4.1
|
|
expected: "Task version: 3.4.1"
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run action, using Task minor version wildcard
|
|
uses: ./
|
|
with:
|
|
version: ${{ matrix.version.input }}
|
|
repo-token: ${{ github.token }}
|
|
|
|
- name: Check Task version
|
|
shell: bash
|
|
run: |
|
|
[[ "$(task --version)" == "${{ matrix.version.expected }}" ]]
|
|
|
|
invalid-version:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Run action, using invalid version
|
|
id: setup-task
|
|
continue-on-error: true
|
|
uses: ./
|
|
with:
|
|
version: 2.42.x
|
|
|
|
- name: Fail the job if the action run succeeded
|
|
if: steps.setup-task.outcome == 'success'
|
|
run: |
|
|
echo "::error::The action run was expected to fail, but passed!"
|
|
exit 1
|