diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/cd.yml | 23 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 23 |
2 files changed, 40 insertions, 6 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 6416ae4..aded4aa 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -9,9 +9,26 @@ defaults: run: shell: 'bash' jobs: - lint-test-build: - name: '[build]' + changes: runs-on: 'ubuntu-latest' + outputs: + ts: ${{ steps.filter.outputs.ts }} + steps: + - uses: actions/checkout@v2 + - name: '[check if build necessary]' + uses: dorny/paths-filter@v2 + id: filter + with: + filters: | + ts: + - '*.ts' + - '*.tsx' + - '*.json' + build-deploy: + name: '[cd|build-deploy]' + runs-on: 'ubuntu-latest' + needs: changes + if: ${{ needs.changes.outputs.ts == 'true' }} steps: - name: '[checkout] ${{ github.repository }} project' uses: 'actions/checkout@v2' @@ -42,4 +59,4 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} branch: ${{ github.ref }} ... -# End of ci.yml +# End of cd.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f5a928..eb6c347 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,15 +4,32 @@ name: 'ci' on: push: - branches-ignore: - -[main] + branches: + - '!main' defaults: run: shell: 'bash' jobs: + changes: + runs-on: 'ubuntu-latest' + outputs: + ts: ${{ steps.filter.outputs.ts }} + steps: + - uses: actions/checkout@v2 + - name: '[check if build necessary]' + uses: dorny/paths-filter@v2 + id: filter + with: + filters: | + ts: + - '*.ts' + - '*.tsx' + - '*.json' lint-test-build: name: '[ci|lint-test-build]' - runs-on: 'ubuntu-18.04' + runs-on: 'ubuntu-latest' + needs: changes + if: ${{ needs.changes.outputs.ts == 'true' }} steps: - name: '[checkout] ${{ github.repository }} project' uses: 'actions/checkout@v2' |