Skip to content

Commit

Permalink
ci: 🛠 use @jscutlery/devkit actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yjaaidi committed Dec 14, 2021
1 parent aa203b9 commit 2ecb2aa
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 78 deletions.
35 changes: 0 additions & 35 deletions .github/actions/release/action.yml

This file was deleted.

37 changes: 0 additions & 37 deletions .github/actions/setup/action.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/nx-migrate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup
uses: ./.github/actions/setup
uses: jscutlery/devkit/.github/actions/setup@main

- name: Check if @nrwl/workspace is outdated
id: nrwl-workspace-outdated
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
# events triggered by the GITHUB_TOKEN will not create a new workflow run.
# This prevents you from accidentally creating recursive workflow runs.""
- name: Release
uses: ./.github/actions/release
uses: jscutlery/devkit/.github/actions/release@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
npm_token: ${{ secrets.NPM_TOKEN }}
8 changes: 4 additions & 4 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup
uses: ./.github/actions/setup
uses: jscutlery/devkit/.github/actions/setup@main
with:
node_version: ${{ matrix.node_version }}

- name: Test
uses: ./.github/actions/test
uses: .github/actions/test
with:
codecov_token: ${{ secrets.CODECOV_TOKEN }}

Expand All @@ -34,10 +34,10 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup
uses: ./.github/actions/setup
uses: jscutlery/devkit/.github/actions/setup@main

- name: Release
uses: ./.github/actions/release
uses: jscutlery/devkit/.github/actions/release@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
npm_token: ${{ secrets.NPM_TOKEN }}

0 comments on commit 2ecb2aa

Please sign in to comment.