8000 fixups post review · scality/breakbeat@ca46870 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fixups post review

fixups post review #61

Workflow file for this run

---
name: tests
on:
push:
branches-ignore:
- development/**
- q/*/**
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '16'
cache: 'yarn'
- name: install dependencies
run: yarn install --frozen-lockfile --prefer-offline
- name: lint
run: yarn --silent lint
- name: build
run: yarn --silent build
- name: test and coverage
run: yarn --silent coverage
- uses: codecov/codecov-action@v4
0