2022-12-31 12:05:36 +01:00
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
|
|
|
|
jobs:
|
2023-02-21 12:18:52 +01:00
|
|
|
compare-dist:
|
2023-02-22 11:42:39 +01:00
|
|
|
name: Test build
|
|
|
|
uses: ./.github/workflows/test-build.yml
|
2023-02-21 12:18:52 +01:00
|
|
|
|
2022-12-31 13:03:06 +01:00
|
|
|
test-action:
|
2023-01-09 00:46:08 +01:00
|
|
|
name: Test the action on ubuntu-latest
|
|
|
|
uses: ./.github/workflows/test-action.yml
|
|
|
|
with:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
test-action-windows-latest:
|
|
|
|
name: Test the action on windows-latest
|
|
|
|
uses: ./.github/workflows/test-action.yml
|
|
|
|
with:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
test-action-macos-latest:
|
|
|
|
name: Test the action on macos-latest
|
|
|
|
uses: ./.github/workflows/test-action.yml
|
|
|
|
with:
|
|
|
|
runs-on: macos-latest
|