(ci): Merge Lint Check Workflows into a Single Workflow checks.yml
#1094
Workflow file for this run
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: Checks | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- 'system/**/*' | |
- '.github/**/*' | |
- '*.md' | |
jobs: | |
checks: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16, 18, 20] | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Setup and install deps | |
run: npm install | |
- name: Lint check | |
run: npm run lint | |
- name: Prettier check | |
run: npm run format:check | |
- name: Build | |
run: npm run build | |
- name: Test | |
run: npm run test |