minor bugs fixed #7
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: Linting and Types | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Linting and Types | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Setup Node ${{ matrix.node-version }} | |
uses: actions/setup-node@v3.7.0 | |
with: | |
always-auth: false | |
node-version: ${{ matrix.node-version }} | |
- name: Run npm install | |
run: npm install | |
- name: Run format:check | |
run: npm run format:check | |
- name: Run lint:everything | |
run: npm run lint:everything |