Merge pull request #1089 from layer5io/revert-1085-fix/modal_header #558
This file contains hidden or 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: Node version and Lint Check | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- 'system/**/*' | |
- '.github/**/*' | |
- '*.md' | |
jobs: | |
compatibility-check: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18, 20] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: make setup | |
- name: Lint Check | |
run: make lint | |
- name: Prettier Check | |
run: make format-check | |
- name: Build Project | |
run: make build | |
- name: Run Tests | |
run: make tests | |
- name: Log Node.js Version | |
run: echo "Tested on Node.js version ${{ matrix.node-version }}" |