Skip to content

build(deps): Bump peaceiris/actions-gh-pages from 3 to 4 in the all-actions group #296

build(deps): Bump peaceiris/actions-gh-pages from 3 to 4 in the all-actions group

build(deps): Bump peaceiris/actions-gh-pages from 3 to 4 in the all-actions group #296

name: Continuous Integration
on:
pull_request:
branches:
- main
jobs:
test:
name: Check format, types and build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
cache: yarn
# ignore scripts as indy-sdk will try to build and we don't have libindy
- name: Install dependencies
run: yarn install --frozen-lockfile --ignore-scripts
- name: Check prettier
run: yarn check-format
- name: Check types
run: yarn check-types
- name: Test build website
run: yarn build