feat 🖥️: added support for the new event api from go-glusterfs #9
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: Format and type check | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
format-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
working-directory: client | |
run: npm ci | |
- name: Test prettier | |
working-directory: client | |
run: npx prettier . --check | |
- name: Test typescript | |
working-directory: client | |
run: npx tsc --noEmit --strict |