Skip to content

Merge pull request #38 from hexlet-components/dependabot/npm_and_yarn… #112

Merge pull request #38 from hexlet-components/dependabot/npm_and_yarn…

Merge pull request #38 from hexlet-components/dependabot/npm_and_yarn… #112

Workflow file for this run

name: Node CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Install
run: make install
- name: Run linter
run: make lint
- name: Run tests
run: make test