Feat: added flodash in range #28
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: CI Prerelease | |
on: | |
push: | |
branches: | |
- development | |
jobs: | |
unit-tests: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run Tests 🧪 | |
uses: ./.github/actions/test | |
release: | |
name: Release packages | |
runs-on: ubuntu-latest | |
needs: unit-tests | |
steps: | |
- name: Checkout repository 🛎️ | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Initiate release 📦 | |
uses: ./.github/actions/release | |
with: | |
credentials: ${{ secrets.PUB_CREDENTIALS }} | |
options: "--prerelease --preid=blizzard" |