2020-02-24 23:05:19 +03:00
|
|
|
name: Test Suite
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-02-02 21:04:07 +03:00
|
|
|
- main
|
2022-07-19 16:19:08 +03:00
|
|
|
- 'v5.*'
|
2021-02-02 21:04:07 +03:00
|
|
|
- 3.x
|
2020-02-24 23:05:19 +03:00
|
|
|
- 2.x
|
2020-03-25 20:18:18 +03:00
|
|
|
- 'renovate/*'
|
2020-04-16 13:01:27 +03:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 1
|
2022-01-14 13:21:42 +03:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
2020-02-24 23:05:19 +03:00
|
|
|
jobs:
|
2020-10-28 11:05:50 +03:00
|
|
|
lint:
|
2023-03-17 17:45:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-10-28 11:05:50 +03:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
|
|
|
|
name: Lint
|
|
|
|
steps:
|
2022-08-03 23:32:37 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
2021-11-25 11:07:45 +03:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 0
|
2020-10-28 11:05:50 +03:00
|
|
|
with:
|
2023-01-03 16:38:40 +03:00
|
|
|
node-version: '16.13.0'
|
2021-11-30 11:01:22 +03:00
|
|
|
cache: yarn
|
2020-10-28 11:05:50 +03:00
|
|
|
- run: yarn
|
|
|
|
- run: yarn lint
|
|
|
|
- uses: daniellockyer/action-slack-build@master
|
2022-08-03 17:14:52 +03:00
|
|
|
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
|
2022-08-03 18:19:23 +03:00
|
|
|
admin-tests:
|
2023-03-17 17:45:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-08-03 18:19:23 +03:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
|
2023-03-02 13:54:01 +03:00
|
|
|
name: Admin - Chrome
|
2022-08-03 18:19:23 +03:00
|
|
|
env:
|
|
|
|
MOZ_HEADLESS: 1
|
|
|
|
JOBS: 1
|
|
|
|
CI: true
|
|
|
|
COVERAGE: true
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
|
|
|
with:
|
2023-01-03 16:38:40 +03:00
|
|
|
node-version: "16.13.0"
|
2022-08-03 18:19:23 +03:00
|
|
|
|
|
|
|
- run: yarn
|
2022-08-15 16:20:45 +03:00
|
|
|
- run: yarn workspace ghost-admin run test
|
2022-08-03 18:19:23 +03:00
|
|
|
env:
|
2023-03-02 13:54:01 +03:00
|
|
|
BROWSER: Chrome
|
2022-08-03 18:19:23 +03:00
|
|
|
|
|
|
|
# Merge coverage reports and upload
|
|
|
|
- run: yarn ember coverage-merge
|
|
|
|
working-directory: ghost/admin
|
2022-09-15 10:50:19 +03:00
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: coverage
|
|
|
|
path: ghost/*/coverage/cobertura-coverage.xml
|
2022-08-03 18:19:23 +03:00
|
|
|
|
|
|
|
- uses: daniellockyer/action-slack-build@master
|
|
|
|
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
|
2020-11-05 15:58:01 +03:00
|
|
|
migrations:
|
2023-03-17 17:45:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-20 17:10:38 +03:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ghost/core
|
2020-11-05 15:58:01 +03:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-01-17 14:05:09 +03:00
|
|
|
env:
|
|
|
|
- DB: sqlite3
|
|
|
|
DB_CLIENT: sqlite3
|
|
|
|
- DB: mysql8
|
|
|
|
DB_CLIENT: mysql
|
2020-11-05 15:58:01 +03:00
|
|
|
env:
|
2022-01-17 14:05:09 +03:00
|
|
|
database__client: ${{ matrix.env.DB_CLIENT }}
|
2022-02-16 20:53:07 +03:00
|
|
|
name: Migrations (${{ matrix.env.DB }})
|
2020-11-05 15:58:01 +03:00
|
|
|
steps:
|
2022-08-03 23:32:37 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-11-17 12:16:03 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
2022-08-03 23:32:37 +03:00
|
|
|
- uses: actions/setup-node@v3
|
2021-11-25 11:07:45 +03:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 0
|
2020-11-05 15:58:01 +03:00
|
|
|
with:
|
2023-01-03 16:38:40 +03:00
|
|
|
node-version: '16.13.0'
|
2021-11-30 11:01:22 +03:00
|
|
|
cache: yarn
|
2020-11-05 15:58:01 +03:00
|
|
|
|
|
|
|
- name: Shutdown MySQL
|
|
|
|
run: sudo service mysql stop
|
2022-09-27 04:03:53 +03:00
|
|
|
if: matrix.env.DB == 'mysql8'
|
2020-11-05 15:58:01 +03:00
|
|
|
|
2022-01-17 14:05:09 +03:00
|
|
|
- uses: daniellockyer/mysql-action@main
|
|
|
|
if: matrix.env.DB == 'mysql8'
|
|
|
|
with:
|
2022-03-02 18:13:03 +03:00
|
|
|
authentication plugin: 'caching_sha2_password'
|
2022-01-17 14:05:09 +03:00
|
|
|
mysql version: '8.0'
|
|
|
|
mysql database: 'ghost_testing'
|
|
|
|
mysql root password: 'root'
|
|
|
|
|
2022-06-02 14:23:17 +03:00
|
|
|
- name: Set env vars (SQLite)
|
|
|
|
if: contains(matrix.env.DB, 'sqlite')
|
|
|
|
run: echo "database__connection__filename=/dev/shm/ghost-test.db" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Set env vars (MySQL)
|
|
|
|
if: contains(matrix.env.DB, 'mysql')
|
|
|
|
run: |
|
|
|
|
echo "database__connection__host=127.0.0.1" >> $GITHUB_ENV
|
|
|
|
echo "database__connection__user=root" >> $GITHUB_ENV
|
|
|
|
echo "database__connection__password=root" >> $GITHUB_ENV
|
|
|
|
echo "database__connection__database=ghost_testing" >> $GITHUB_ENV
|
|
|
|
|
2020-11-05 15:58:01 +03:00
|
|
|
- run: yarn
|
2020-11-11 13:33:18 +03:00
|
|
|
- run: |
|
|
|
|
node index.js &
|
2020-11-20 11:41:59 +03:00
|
|
|
sleep 20 && { kill $! && wait $!; } 2>/dev/null
|
2021-02-02 13:24:49 +03:00
|
|
|
|
2022-05-09 13:22:03 +03:00
|
|
|
- run: sqlite3 ${{ env.database__connection__filename }} "DELETE FROM migrations WHERE version LIKE '5.%';"
|
|
|
|
if: matrix.env.DB == 'sqlite3'
|
|
|
|
- run: mysql -h127.0.0.1 -uroot -proot ghost_testing -e "DELETE FROM migrations WHERE version LIKE '5.%';"
|
2022-09-27 04:03:53 +03:00
|
|
|
if: matrix.env.DB == 'mysql8'
|
2022-05-09 13:22:03 +03:00
|
|
|
|
2020-11-05 15:58:01 +03:00
|
|
|
- run: yarn knex-migrator migrate --force
|
|
|
|
|
2022-02-16 20:50:56 +03:00
|
|
|
unit-tests:
|
2023-03-17 17:45:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-02-16 20:50:56 +03:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-01-04 12:45:48 +03:00
|
|
|
node: [ '14.18.0', '16.13.0', '18.12.1' ]
|
2022-02-16 20:50:56 +03:00
|
|
|
name: Unit Tests (Node ${{ matrix.node }})
|
|
|
|
steps:
|
2022-08-03 23:32:37 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
2022-02-16 20:50:56 +03:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 0
|
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node }}
|
|
|
|
cache: yarn
|
|
|
|
|
|
|
|
- run: yarn
|
2022-08-15 16:20:45 +03:00
|
|
|
- run: yarn workspaces run test:unit
|
2022-02-16 20:50:56 +03:00
|
|
|
|
2022-09-15 10:50:19 +03:00
|
|
|
- uses: actions/upload-artifact@v3
|
2022-09-05 12:06:12 +03:00
|
|
|
if: startsWith(matrix.node, '16')
|
2022-09-15 10:50:19 +03:00
|
|
|
with:
|
|
|
|
name: coverage
|
|
|
|
path: ghost/*/coverage/cobertura-coverage.xml
|
2022-02-16 20:50:56 +03:00
|
|
|
|
|
|
|
- uses: daniellockyer/action-slack-build@master
|
|
|
|
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
|
|
|
|
|
|
|
database-tests:
|
2023-03-17 17:45:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-07-20 17:10:38 +03:00
|
|
|
defaults:
|
|
|
|
run:
|
|
|
|
working-directory: ghost/core
|
2020-03-25 20:18:18 +03:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
|
2020-02-24 23:05:19 +03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2023-01-04 12:45:48 +03:00
|
|
|
node: [ '14.18.0', '16.13.0', '18.12.1' ]
|
2020-02-24 23:05:19 +03:00
|
|
|
env:
|
2022-01-17 14:05:09 +03:00
|
|
|
- DB: mysql8
|
2020-02-24 23:05:19 +03:00
|
|
|
NODE_ENV: testing-mysql
|
2023-03-02 13:02:00 +03:00
|
|
|
include:
|
|
|
|
- node: 16.13.0
|
|
|
|
env:
|
|
|
|
DB: sqlite3
|
|
|
|
NODE_ENV: testing
|
2020-02-24 23:05:19 +03:00
|
|
|
env:
|
|
|
|
DB: ${{ matrix.env.DB }}
|
|
|
|
NODE_ENV: ${{ matrix.env.NODE_ENV }}
|
2022-02-16 20:53:07 +03:00
|
|
|
name: Database Tests (Node ${{ matrix.node }}, ${{ matrix.env.DB }})
|
2020-02-24 23:05:19 +03:00
|
|
|
steps:
|
2022-08-03 23:32:37 +03:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- uses: actions/setup-node@v3
|
2021-11-25 11:07:45 +03:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 0
|
2020-02-24 23:05:19 +03:00
|
|
|
with:
|
|
|
|
node-version: ${{ matrix.node }}
|
2021-11-30 11:01:22 +03:00
|
|
|
cache: yarn
|
2020-03-19 22:19:00 +03:00
|
|
|
|
2020-03-20 14:05:16 +03:00
|
|
|
- name: Shutdown MySQL
|
|
|
|
run: sudo service mysql stop
|
2022-09-27 04:03:53 +03:00
|
|
|
if: matrix.env.DB == 'mysql8'
|
2020-03-20 14:05:16 +03:00
|
|
|
|
2022-01-17 14:05:09 +03:00
|
|
|
- uses: daniellockyer/mysql-action@main
|
|
|
|
if: matrix.env.DB == 'mysql8'
|
|
|
|
with:
|
2022-03-02 18:13:03 +03:00
|
|
|
authentication plugin: 'caching_sha2_password'
|
2022-01-17 14:05:09 +03:00
|
|
|
mysql version: '8.0'
|
|
|
|
mysql database: 'ghost_testing'
|
|
|
|
mysql root password: 'root'
|
|
|
|
|
2020-02-24 23:05:19 +03:00
|
|
|
- run: yarn
|
2021-11-11 12:26:11 +03:00
|
|
|
|
|
|
|
- run: date +%s > ${{ runner.temp }}/startTime # Get start time for test suite
|
|
|
|
|
2022-06-02 14:23:17 +03:00
|
|
|
- name: Set env vars (SQLite)
|
|
|
|
if: contains(matrix.env.DB, 'sqlite')
|
|
|
|
run: echo "database__connection__filename=/dev/shm/ghost-test.db" >> $GITHUB_ENV
|
|
|
|
|
|
|
|
- name: Set env vars (MySQL)
|
|
|
|
if: contains(matrix.env.DB, 'mysql')
|
|
|
|
run: echo "database__connection__password=root" >> $GITHUB_ENV
|
|
|
|
|
2022-02-16 20:54:12 +03:00
|
|
|
- name: Run tests
|
|
|
|
run: yarn test:ci
|
2020-04-16 09:36:15 +03:00
|
|
|
|
2021-11-11 12:26:11 +03:00
|
|
|
# Get runtime in seconds for test suite
|
|
|
|
- run: |
|
|
|
|
startTime="$(cat ${{ runner.temp }}/startTime)"
|
|
|
|
endTime="$(date +%s)"
|
|
|
|
echo "test_time=$(($endTime-$startTime))" >> $GITHUB_ENV
|
|
|
|
|
2022-11-17 06:44:34 +03:00
|
|
|
- uses: codecov/codecov-action@v3
|
|
|
|
if: startsWith(matrix.node, '16') && contains(matrix.env.DB, 'mysql')
|
|
|
|
with:
|
|
|
|
flags: e2e-tests
|
|
|
|
|
2021-12-14 12:37:38 +03:00
|
|
|
# Continue on error if TailScale service is down
|
2021-11-11 12:26:11 +03:00
|
|
|
- name: Tailscale Action
|
2021-12-14 12:37:38 +03:00
|
|
|
timeout-minutes: 2
|
|
|
|
continue-on-error: true
|
2021-12-06 15:40:05 +03:00
|
|
|
if: (github.event_name == 'push' && github.repository_owner == 'TryGhost') || (github.event_name == 'pull_request' && startsWith(github.head_ref, 'TryGhost/'))
|
2021-11-11 12:26:11 +03:00
|
|
|
uses: tailscale/github-action@v1
|
|
|
|
with:
|
|
|
|
authkey: ${{ secrets.TAILSCALE_AUTHKEY }}
|
|
|
|
|
|
|
|
# Report time taken to metrics service
|
2021-12-14 12:37:38 +03:00
|
|
|
# Continue on error if previous TailScale step fails
|
2023-03-13 14:19:42 +03:00
|
|
|
- uses: tryghost/action-trigger-metric@main
|
2021-12-14 12:37:38 +03:00
|
|
|
timeout-minutes: 1
|
|
|
|
continue-on-error: true
|
2021-12-06 15:40:05 +03:00
|
|
|
if: (github.event_name == 'push' && github.repository_owner == 'TryGhost') || (github.event_name == 'pull_request' && startsWith(github.head_ref, 'TryGhost/'))
|
2021-11-11 12:26:11 +03:00
|
|
|
with:
|
|
|
|
metricName: 'test-time'
|
|
|
|
metricValue: ${{ env.test_time }}
|
|
|
|
configuration: |
|
|
|
|
{
|
|
|
|
"metrics": {
|
|
|
|
"transports": ["elasticsearch"],
|
|
|
|
"metadata": {
|
|
|
|
"database": "${{ matrix.env.DB }}",
|
|
|
|
"node": "${{ matrix.node }}"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"elasticsearch": {
|
|
|
|
"host": "${{ secrets.ELASTICSEARCH_HOST }}",
|
|
|
|
"username": "${{ secrets.ELASTICSEARCH_USERNAME }}",
|
|
|
|
"password": "${{ secrets.ELASTICSEARCH_PASSWORD }}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-10 10:58:35 +03:00
|
|
|
- uses: daniellockyer/action-slack-build@master
|
2021-02-02 21:04:07 +03:00
|
|
|
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
2020-06-10 10:58:35 +03:00
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
2020-06-09 15:21:43 +03:00
|
|
|
|
2020-04-16 09:36:15 +03:00
|
|
|
ghost-cli:
|
|
|
|
name: Ghost-CLI
|
2022-08-19 16:54:36 +03:00
|
|
|
if: github.event_name == 'push' || (github.event_name == 'pull_request' && !startsWith(github.head_ref, 'renovate/'))
|
2023-03-17 17:45:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2020-04-16 09:36:15 +03:00
|
|
|
steps:
|
2022-08-03 23:32:37 +03:00
|
|
|
- uses: actions/checkout@v3
|
2020-04-16 09:36:15 +03:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
submodules: true
|
2022-08-03 23:32:37 +03:00
|
|
|
- uses: actions/setup-node@v3
|
2021-11-25 11:07:45 +03:00
|
|
|
env:
|
|
|
|
FORCE_COLOR: 0
|
2020-04-16 09:36:15 +03:00
|
|
|
with:
|
2022-08-19 16:54:36 +03:00
|
|
|
node-version: '16.13.0'
|
2021-11-30 11:01:22 +03:00
|
|
|
cache: yarn
|
2022-08-19 16:54:36 +03:00
|
|
|
|
|
|
|
- name: Install Ghost-CLI
|
|
|
|
run: npm install -g ghost-cli@latest
|
|
|
|
|
|
|
|
- run: yarn
|
|
|
|
|
2022-05-24 10:20:57 +03:00
|
|
|
- run: npm --no-git-tag-version version minor # We need to artificially bump the minor version to get migrations to run
|
2022-08-19 16:54:36 +03:00
|
|
|
working-directory: ghost/core
|
2021-03-01 11:56:27 +03:00
|
|
|
|
2022-08-19 16:54:36 +03:00
|
|
|
- run: npm pack
|
|
|
|
working-directory: ghost/core
|
|
|
|
|
|
|
|
- run: mv ghost-*.tgz ghost.tgz
|
|
|
|
working-directory: ghost/core
|
2020-04-16 09:36:15 +03:00
|
|
|
|
|
|
|
- name: Clean Install
|
|
|
|
run: |
|
|
|
|
DIR=$(mktemp -d)
|
2022-08-19 16:54:36 +03:00
|
|
|
ghost install local -d $DIR --archive $(pwd)/ghost/core/ghost.tgz
|
2020-04-16 09:36:15 +03:00
|
|
|
|
2021-02-09 19:18:40 +03:00
|
|
|
- name: Latest Release
|
|
|
|
run: |
|
|
|
|
DIR=$(mktemp -d)
|
|
|
|
ghost install local -d $DIR
|
2022-08-19 16:54:36 +03:00
|
|
|
ghost update -d $DIR --archive $(pwd)/ghost/core/ghost.tgz
|
2021-02-09 19:18:40 +03:00
|
|
|
|
2022-08-19 16:54:36 +03:00
|
|
|
- name: Update from latest v4
|
2021-03-17 14:47:27 +03:00
|
|
|
run: |
|
|
|
|
DIR=$(mktemp -d)
|
2022-08-19 16:54:36 +03:00
|
|
|
ghost install v4 --local -d $DIR
|
|
|
|
ghost update -f -d $DIR --archive $(pwd)/ghost/core/ghost.tgz
|
2021-03-17 14:47:27 +03:00
|
|
|
|
2021-06-09 15:51:55 +03:00
|
|
|
- name: Print debug logs
|
|
|
|
if: failure()
|
2022-02-04 11:40:26 +03:00
|
|
|
run: |
|
|
|
|
[ -f ~/.ghost/logs/*.log ] && cat ~/.ghost/logs/*.log
|
2021-06-09 15:51:55 +03:00
|
|
|
|
2020-06-10 10:58:35 +03:00
|
|
|
- uses: daniellockyer/action-slack-build@master
|
2021-02-02 21:04:07 +03:00
|
|
|
if: failure() && github.event_name == 'push' && github.ref == 'refs/heads/main'
|
2020-06-10 10:58:35 +03:00
|
|
|
with:
|
|
|
|
status: ${{ job.status }}
|
|
|
|
env:
|
|
|
|
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
|
2021-01-19 15:10:50 +03:00
|
|
|
|
2022-09-15 10:50:19 +03:00
|
|
|
coverage:
|
|
|
|
name: Coverage
|
|
|
|
needs: [unit-tests, admin-tests]
|
2023-03-17 17:45:43 +03:00
|
|
|
runs-on: ubuntu-latest
|
2022-09-15 10:50:19 +03:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Restore coverage
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
path: ghost
|
|
|
|
- run: rsync -av --remove-source-files ghost/coverage/* ghost/
|
|
|
|
- uses: codecov/codecov-action@v3
|
2022-11-17 06:44:34 +03:00
|
|
|
with:
|
|
|
|
flags: unit-tests
|
2022-09-15 10:50:19 +03:00
|
|
|
|
2021-01-19 15:10:50 +03:00
|
|
|
canary:
|
2022-08-31 13:18:24 +03:00
|
|
|
needs: [lint, ghost-cli, admin-tests, migrations, unit-tests, database-tests]
|
2021-02-02 21:04:07 +03:00
|
|
|
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
|
2021-01-19 15:10:50 +03:00
|
|
|
name: Canary
|
2022-08-03 18:26:10 +03:00
|
|
|
uses: tryghost/actions/.github/workflows/canary.yml@main
|