Skip to content

chore: Bump sha.js to 2.4.12 #3079

chore: Bump sha.js to 2.4.12

chore: Bump sha.js to 2.4.12 #3079

Workflow file for this run

name: Library test
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
prepare:
runs-on: ubuntu-latest
steps:
- name: Setup
uses: aragon/gov-ui-kit/.github/actions/setup@main
- name: Build library
run: yarn build
- name: Build storybook
run: yarn build:storybook
test:
needs: prepare
runs-on: ubuntu-latest
steps:
- name: Setup
uses: aragon/gov-ui-kit/.github/actions/setup@main
with:
# Checkout full history to correclty check changeset status
fetch-depth: 0
- name: Run tests with coverage
run: |
set -eo pipefail
yarn test:coverage
- name: Check types
run: yarn type-check
- name: Check linter
run: yarn lint
- name: Check prettier
run: yarn prettify
- name: Check changeset
if: github.event_name == 'pull_request'
run: yarn changeset status --since origin/main