Skip to content

fix ci

fix ci #69

Workflow file for this run

name: hexlet-check
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Setup app
run: make setup-ci
- name: Linter and tests check
run: make check