Skip to content

fix(config): remove "@trivago/prettier-plugin-sort-imports from con… #8

fix(config): remove "@trivago/prettier-plugin-sort-imports from con…

fix(config): remove "@trivago/prettier-plugin-sort-imports from con… #8

Workflow file for this run

name: Publish 🚀
on:
push:
branches: [main]
jobs:
publish:
name: Publish 🚀
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x]
os: [ubuntu-latest]
steps:
- name: Checkout code 📚
uses: actions/checkout@v3
- name: Set up Node 🟢
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install packages ⚙️
run: yarn install --frozen-lockfile
- name: Publish package 🚀
run: yarn semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}