build(deps): update dependency prettier to v3 #331
Workflow file for this run
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 | |
on: [push, pull_request] | |
jobs: | |
style: | |
name: Check style | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies with Yarn | |
run: yarn install --immutable --immutable-cache | |
- name: Check style | |
run: yarn run style | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
needs: [style] | |
steps: | |
- name: Checkout git repository | |
uses: actions/checkout@v3 | |
- name: Install dependencies with Yarn | |
run: yarn install --immutable --immutable-cache | |
- name: Run semantic release | |
run: yarn run semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |