Dev thomas #102
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 compilation | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint-and-build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ['18.x', '19.x', '20.x'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js ${{matrix.node-version}} | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{matrix.node-version}} | |
- name: NPM Install | |
run: npm install | |
- name: NPM Lint | |
run: npm run lint | |
- name: Build | |
run: npm run build | |