Skip to content

Bump prettier from 3.3.1 to 3.3.2 #383

Bump prettier from 3.3.1 to 3.3.2

Bump prettier from 3.3.1 to 3.3.2 #383

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/promise-utils
uses: actions/checkout@master
- name: Check hyperlinks
uses: gaurav-nelson/github-action-markdown-link-check@v1
lint-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
name: Build (${{ matrix.node-version }})
steps:
- name: Clone @api3/promise-utils
uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
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