refactor: removing bundle printing in test run to reduce log output f… #87
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: formatting | |
on: [push] | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
name: prettier | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20" | |
- name: prettier check | |
run: npx prettier -c ./src ./tests --config ./.prettierrc |