chore(deps): bump http-proxy-middleware from 2.0.6 to 2.0.7 (#331) #298
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: Release | |
on: | |
push: | |
branches: | |
- master | |
env: | |
NX_BRANCH: ${{ github.event.number }} | |
NX_RUN_GROUP: ${{ github.run_id }} | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Cache node modules | |
id: cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
**/node_modules | |
key: cache-node-modules-${{ hashFiles('yarn.lock') }} | |
- name: yarn install | |
if: steps.cache.outputs.cache-hit != 'true' | |
run: yarn install | |
- name: GIT/NPM config | |
run: | | |
git config user.name "${GITHUB_ACTOR}" | |
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" | |
echo "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Compile latest actions | |
run: yarn nx run-many --target compile --all | |
- name: Derive appropriate SHAs for base and head for `nx affected` commands | |
uses: ./actions/set-shas | |
with: | |
main-branch-name: master | |
- name: nx affected:version | |
uses: ./actions/run-many | |
with: | |
target: version | |
- name: nx affected:build | |
uses: ./actions/run-many | |
with: | |
target: build | |
- name: nx affected:publish | |
uses: ./actions/run-many | |
with: | |
target: publish | |
- name: Push GIT | |
if: always() | |
run: git push --follow-tags |