Skip to content

chore: exponential backoff factor 1.5 -> 1.2 #1069

chore: exponential backoff factor 1.5 -> 1.2

chore: exponential backoff factor 1.5 -> 1.2 #1069

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Lint and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ['18.x']
os: [ubuntu-latest]
steps:
- name: Checkout repo
uses: actions/checkout@v2
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install
run: yarn install
- name: Build
run: yarn build
- name: Lint
run: yarn lint
- name: Test
run: yarn test:unit