Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliav2 committed Apr 30, 2024
1 parent 3350f73 commit 2f622b6
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 42 deletions.
64 changes: 22 additions & 42 deletions .github/workflows/npm-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,65 +3,45 @@ on:
push:
branches:
- main
paths:
- "packages/express-typed/package.json"
- ft/reusable-workflows
# paths:
# - "packages/express-typed/package.json"
permissions:
contents: write
jobs:
build-and-push:
setup:
uses: ./.github/workflows/setup.yml
permissions:
contents: write
tests:
uses: ./.github/workflows/tests.yml
needs: setup
permissions:
contents: read
build-and-publish:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 9
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
working-directory: packages/express-typed
# no need to build the package, prepublish script will take care of it
- name: Run tests
run: pnpm test
working-directory: packages/express-typed
- name: get version
id: get_version
run: echo version=v$(node -p "require('./package.json').version") >> $GITHUB_OUTPUT
working-directory: packages/express-typed
- name: Publish package on NPM 📦
run: npm publish
working-directory: packages/express-typed
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
outputs:
version: ${{ steps.get_version.outputs.version }}

release:
needs: build-and-publish
name: Release pushed tag
runs-on: ubuntu-latest
needs: build-and-push
steps:
# no need to build the package, prepublish script will take care of it
- name: get version
id: get_version
run: echo version=v$(node -p "require('./package.json').version") >> $GITHUB_OUTPUT
working-directory: packages/express-typed
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release create "${{ needs.build-and-push.outputs.version }}" \
gh release create "${{ steps.get_version.outputs.version }}" \
--repo="$GITHUB_REPOSITORY" \
--title="${GITHUB_REPOSITORY#*/} ${{ needs.build-and-push.outputs.version }}" \
--title="${GITHUB_REPOSITORY#*/} ${{ steps.get_version.outputs.version }}" \
--generate-notes
34 changes: 34 additions & 0 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Setup
on:
workflow_call:
permissions:
contents: write
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- uses: pnpm/action-setup@v3
name: Install pnpm
with:
version: 9
run_install: false
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
working-directory: packages/express-typed
12 changes: 12 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Tests
on:
workflow_call:
permissions:
contents: read
jobs:
run-tests:
runs-on: ubuntu-latest
steps:
- name: Run tests
run: pnpm test
working-directory: packages/express-typed

0 comments on commit 2f622b6

Please sign in to comment.