Merge pull request #655 from DimRux/issue_654 #158
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: main | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint-and-build-project: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Cloning the repository | |
uses: actions/checkout@v2 | |
- name: Installing node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Installing dependencies | |
run: make install | |
- name: Linting code | |
run: make lint | |
- name: Building project | |
run: make build |