Skip to content

workflow

workflow #3

Workflow file for this run

name: workflow
on: push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18.x'
cache: 'npm'
- uses: hexlet-components/hello-from-hexlet-action@release
- run: make install
- run: make setup
- run: make test
- run: make lint
- run: make test