This repository has been archived by the owner on Dec 26, 2024. It is now read-only.
Merge pull request #660 from dragooon4ik24/fixTypo #168
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 |