chore(settings): remove package not found #45
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: Release | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Release: | |
name: π 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: 20 | |
- 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: π Release | |
run: npm run 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 }} |