You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This is a basic workflow to help you get started with Actionsname: CI# Controls when the action will run. on:
# Triggers the workflow on push or pull request events but only for the master branchpull_request:
branches: [ staging ]# A workflow run is made up of one or more jobs that can run sequentially or in paralleljobs:
# This workflow contains a single job called "build"prettier:
runs-on: ubuntu-lateststeps:
- name: Checkoutuses: actions/checkout@v2with:
# Make sure the actual branch is checked out when running on pull requestsref: ${{ github.head_ref }}
- name: Check code styleuses: creyD/prettier_action@v3.3with:
# This part is also where you can pass other options, for example:dry: trueprettier_options: "-c src/**/*.{ts,vue}"env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
despite warnings being printed the job doesn't fail
The text was updated successfully, but these errors were encountered:
despite warnings being printed the job doesn't fail
The text was updated successfully, but these errors were encountered: