Skip to content

chore(deps): update dependency semver to v7.6.2 #2369

chore(deps): update dependency semver to v7.6.2

chore(deps): update dependency semver to v7.6.2 #2369

name: Release_Script_Test
defaults:
run:
working-directory: scripts/release
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- main
- patch-release
- next
paths:
- "scripts/release/**"
- ".github/workflows/release-script-test.yml"
pull_request:
paths:
- "scripts/release/**"
- ".github/workflows/release-script-test.yml"
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
# Minimal version the release script required
node-version: "18"
cache: "yarn"
- name: Install Dependencies
run: yarn install --immutable
- name: Test
run: yarn test