Skip to content

Merge branch 'main' into dev #6

Merge branch 'main' into dev

Merge branch 'main' into dev #6

Workflow file for this run

name: Dry Release
on:
push:
branches:
- dev
pull_request:
branches:
- dev
jobs:
Dry-Release:
name: πŸš€ Dry Release πŸš€
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [20]
os: ["ubuntu-latest"]
steps:
- name: πŸ›’ Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
- name: βš™οΈ Setup Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: πŸ“₯ Install deps
run: npm install
- name: πŸ— Build
run: npm run build --if-present
- name: πŸ“ Format
run: npm run format --if-present
- name: 🚨 test
run: npm run test --if-present
- name: πŸš€ Dry Release
run: npm run dry-release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GH_TOKEN: ${{ secrets.GH_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_AUTHOR_NAME: ${{ secrets.GIT_NAME }}
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_EMAIL }}
GIT_COMMITTER_NAME: ${{ secrets.GIT_NAME }}
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_EMAIL }}