- Notifications
You must be signed in to change notification settings - Fork114
fix: multiple active issue in select#4625
Workflow file for this run
This file contains hidden or 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, Test, and Deploy | |
on:[push] | |
jobs: | |
build: | |
runs-on:ubuntu-latest | |
steps: | |
-name:Checkout | |
uses:actions/checkout@v4.2.0 | |
-name:Setup Node.js | |
uses:actions/setup-node@v3 | |
with: | |
node-version:22.16.0 | |
-name:Enable Corepack | |
run:corepack enable | |
-name:Install Yarn | |
run:corepack prepare yarn@4.9.2 --activate | |
-name:Install dependencies | |
run:yarn install --immutable | |
-name:Build | |
run:| | |
yarn build | |
env: | |
CI:true | |
-name:Test | |
run:| | |
yarn test | |
env: | |
CI:true | |
-name:Prepare and deploy | |
run:| | |
npm run deploy -- --name="Swimlane" --email="swimlane-devops@swimlane.com" | |
if:${{ github.ref == 'refs/heads/master' }} | |
env: | |
CI:true | |
GH_TOKEN:${{ secrets.GH_TOKEN }} |