From 462e4360d50eb56293cb464b591f8c62496a231c Mon Sep 17 00:00:00 2001 From: "Andrew A. Barber" Date: Tue, 18 Feb 2025 18:17:36 +0000 Subject: [PATCH 1/2] Add GitHub Actions workflows for npm publishing --- .github/workflows/npm-publish-beta.yml | 56 ++++++++++++++++++++++++++ .github/workflows/npm-publish.yml | 32 +++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 .github/workflows/npm-publish-beta.yml create mode 100644 .github/workflows/npm-publish.yml diff --git a/.github/workflows/npm-publish-beta.yml b/.github/workflows/npm-publish-beta.yml new file mode 100644 index 0000000..1fc5365 --- /dev/null +++ b/.github/workflows/npm-publish-beta.yml @@ -0,0 +1,56 @@ +name: NPM Publish Beta + +on: + push: + branches: + - develop + pull_request: + branches: + - master + +jobs: + publish-beta: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18.x' + registry-url: 'https://registry.npmjs.org' + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Run tests + run: npm test + + - name: Generate beta version + id: beta-version + run: | + # Get the current version from package.json + CURRENT_VERSION=$(node -p "require('./package.json').version") + + # For PR: use PR number in version + if [[ "${{ github.event_name }}" == "pull_request" ]]; then + BETA_VERSION="$CURRENT_VERSION-beta.pr.${{ github.event.pull_request.number }}" + else + # For develop: use commit hash + SHORT_SHA=$(echo ${{ github.sha }} | cut -c1-7) + BETA_VERSION="$CURRENT_VERSION-beta.$SHORT_SHA" + fi + + # Set output for use in next step + echo "version=$BETA_VERSION" >> $GITHUB_OUTPUT + + # Update package.json with new version + npm version $BETA_VERSION --no-git-tag-version + + - name: Publish beta to npm + run: npm publish --tag beta --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml new file mode 100644 index 0000000..b277b34 --- /dev/null +++ b/.github/workflows/npm-publish.yml @@ -0,0 +1,32 @@ +name: NPM Publish + +on: + push: + branches: + - master + +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: '18.x' + registry-url: 'https://registry.npmjs.org' + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run build + + - name: Run tests + run: npm test + + - name: Publish to npm + run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} From bbb73f50bc3cdf0f43076d1b3cebea20241a6b37 Mon Sep 17 00:00:00 2001 From: "Andrew A. Barber" Date: Tue, 18 Feb 2025 18:23:21 +0000 Subject: [PATCH 2/2] Remove test steps from workflows until tests are implemented --- .github/workflows/npm-publish-beta.yml | 3 --- .github/workflows/npm-publish.yml | 3 --- 2 files changed, 6 deletions(-) diff --git a/.github/workflows/npm-publish-beta.yml b/.github/workflows/npm-publish-beta.yml index 1fc5365..699ef70 100644 --- a/.github/workflows/npm-publish-beta.yml +++ b/.github/workflows/npm-publish-beta.yml @@ -25,9 +25,6 @@ jobs: - name: Build run: npm run build - - - name: Run tests - run: npm test - name: Generate beta version id: beta-version diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index b277b34..04986f1 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -23,9 +23,6 @@ jobs: - name: Build run: npm run build - - name: Run tests - run: npm test - - name: Publish to npm run: npm publish --access public env: