Skip to content

fix(engine-*): Add missing peerDependencies #7

fix(engine-*): Add missing peerDependencies

fix(engine-*): Add missing peerDependencies #7

Workflow file for this run

name: Node PR CI
on:
- pull_request
jobs:
build:
runs-on: ubuntu-latest
env:
NAME: putout
strategy:
matrix:
node-version:
- 16.x
- 18.x
- 20.x
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Redrun, Lerna
run: npm i redrun lerna@6 -g
- name: Bootstrap
run: lerna bootstrap
- name: Lint
run: redrun lint
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Typos Install
run: cargo install typos-cli || echo 'already installed'
- name: Typos
run: typos
- name: Coverage
run: redrun coverage:ci report