Skip to content

Bump husky from 9.0.6 to 9.0.10 #289

Bump husky from 9.0.6 to 9.0.10

Bump husky from 9.0.6 to 9.0.10 #289

Workflow file for this run

name: Continuous Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
documentation:
runs-on: ubuntu-latest
steps:
- name: Clone @api3/ois
uses: actions/checkout@master
- name: Check hyperlinks
uses: gaurav-nelson/github-action-markdown-link-check@v1
with:
config-file: .github/workflows/mlc_config.json
lint-test:
runs-on: ubuntu-latest
steps:
- name: Clone @api3/ois
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: '18'
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint
- name: Test
run: yarn test
required-checks-passed:
name: All required checks passed
runs-on: ubuntu-latest
needs: [lint-test]
steps:
- run: exit 0