From 907e5dae80e550308c2335c55ac2754c572d9815 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 3 Jul 2020 03:33:04 +0200 Subject: [PATCH] Try to test Action in-vivo --- .github/workflows/ci.yml | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 07aa196..cec52dd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,13 +14,17 @@ jobs: npm install npm run all - # test: # make sure the action works on a clean machine without building - # runs-on: ubuntu-latest - # strategy: - # matrix: - # os: [ubuntu-latest, windows-latest, macos-latest] - # steps: - # - uses: actions/checkout@v1 - # - uses: ./ - # with: - # milliseconds: 1000 + test: # make sure the action works on a clean machine without building + runs-on: ubuntu-latest + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] + steps: + - uses: actions/checkout@v1 + - uses: ./ + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: README.md + asset_name: TEST.md + tag: ci-test + overwrite: true