SPDE-130: Re-CD this repo #22
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: Scratch Workflow | |
on: | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] # we should pull this from a common place | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Extract version from package.json | |
uses: sergeysova/jq-action@v2 | |
id: version | |
with: | |
cmd: 'jq .version package.json -r' | |
- name: Check existing beta releases | |
uses: cardinalby/git-get-release-action@v1 | |
id: released | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
with: | |
tag: "v${{ steps.version.outputs.value }}" | |
- name: Block if found | |
if: "${{ steps.released.outputs.id }}" | |
run: | | |
echo "This version has already been release, update project version in package.json to produce beta package." | |
exit 1 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Build | |
run: | | |
npm install | |
npm run build | |