chore(deps): update yarn minors and patches #919
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and deploy | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- master | |
tags: | |
- v*.*.* | |
jobs: | |
setup: | |
name: Setup | |
runs-on: ubuntu-latest | |
outputs: | |
is-release: ${{ steps.metadata.outputs.is-release }} | |
publishable: ${{ steps.metadata.outputs.publishable }} | |
version: ${{ steps.metadata.outputs.version }} | |
npm-tag: ${{ steps.metadata.outputs.npm-tag }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Fetch origin/master (for action-metadata commit check) | |
run: | | |
git fetch --no-tags --prune --depth=1000 origin +refs/heads/master:refs/remotes/origin/master '+refs/heads/release/*:refs/remotes/origin/release/*' | |
- name: Setup asdf-vm | |
uses: equisoft-actions/with-asdf-vm@v2 | |
- name: Find application metadata | |
id: metadata | |
uses: equisoft-actions/nodejs-application-metadata@v1 | |
with: | |
release-branch: master | |
hotfix-branch-prefix: release/ | |
- name: Install NPM dependencies | |
uses: equisoft-actions/yarn-install@v1 | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
needs: | |
- setup | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup asdf-vm | |
uses: equisoft-actions/with-asdf-vm@v2 | |
- name: Install NPM dependencies | |
uses: equisoft-actions/yarn-install@v1 | |
- name: Run ESLint | |
uses: equisoft-actions/yarn-eslint@v2 | |
jest: | |
name: Jest | |
needs: | |
- setup | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup asdf-vm | |
uses: equisoft-actions/with-asdf-vm@v2 | |
- name: Install NPM dependencies | |
uses: equisoft-actions/yarn-install@v1 | |
- name: Run Jest | |
uses: equisoft-actions/yarn-jest@v2 | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: | |
- setup | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup asdf-vm | |
uses: equisoft-actions/with-asdf-vm@v2 | |
- name: Install NPM dependencies | |
uses: equisoft-actions/yarn-install@v1 | |
- name: Build | |
run: yarn build | |
- name: Store package | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/ | |
retention-days: 1 | |
if-no-files-found: error | |
publish: | |
name: Publish to npm | |
environment: npm-deployment | |
runs-on: ubuntu-latest | |
needs: | |
- setup | |
- jest | |
- lint | |
- build | |
if: ${{ needs.setup.outputs.publishable == 'true' }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Download | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist/ | |
- name: Setup asdf-vm | |
uses: equisoft-actions/with-asdf-vm@v2 | |
- name: Install NPM dependencies | |
uses: equisoft-actions/yarn-install@v1 | |
- name: Update package version | |
env: | |
VERSION: ${{ needs.setup.outputs.version }} | |
run: | | |
contents="$(jq ".version = \"${VERSION}\"" ./package.json)" && echo "${contents}" > ./package.json | |
- name: NPM Login | |
uses: equisoft-actions/yarn-npm-login@v1 | |
with: | |
registry: registry.yarnpkg.com | |
token: ${{ secrets.NPM_TOKEN }} | |
- name: Yarn publish | |
env: | |
VERSION: ${{ needs.setup.outputs.npm-tag }} | |
run: | | |
yarn npm publish --tag "${VERSION}" --tolerate-republish --access public | |
notify: | |
name: Notify | |
runs-on: ubuntu-latest | |
needs: | |
- lint | |
- jest | |
- build | |
- publish | |
if: failure() && github.event_name == 'push' | |
steps: | |
- name: Post workflow status | |
uses: equisoft-actions/notify-workflow-status@v2 | |
with: | |
needs: ${{ toJSON(needs) }} | |
slack-bot-token: ${{ secrets.SLACK_BOT_TOKEN }} | |
slack-channel: ${{ github.event.repository.custom_properties.ci_slack_channel }} |