chore(deps): bump ag-grid-community from 28.0.2 to 32.0.1 #97
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
# | |
# For more information see: | |
# https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
# | |
name: Formatting | |
on: | |
pull_request: | |
branches: [master, main] | |
# on subsequent push cancel previously in progress jobs | |
concurrency: | |
group: ${{ github.head_ref }}-prettier | |
cancel-in-progress: true | |
jobs: | |
prettier: | |
# Doesn't run CI on draft PRs | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 16.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 16.X | |
- name: Check formatting with prettier | |
id: format | |
run: npx [email protected] --check ./src ./e2e |