chore(deps): bump @ircsignpost/signpost-base from 16.42.0 to 16.44.0 #511
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: Check lints and formatting | |
on: | |
push: | |
pull_request: | |
types: [opened, reopened] | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install node dependencies | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '18' | |
- run: yarn install | |
- name: Check lints | |
run: yarn lint | |
- name: Check formatting | |
run: yarn prettier --check . |