Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use @jscutlery/devkit actions #413

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 }}