Skip to content

build(deps): bump @metamask/action-utils from 1.0.0 to 1.1.0 #348

build(deps): bump @metamask/action-utils from 1.0.0 to 1.1.0

build(deps): bump @metamask/action-utils from 1.0.0 to 1.1.0 #348

Workflow file for this run

name: Build, Lint, and Test
on:
push:
branches: [main]
pull_request:
jobs:
build-lint-test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
- run: yarn install --frozen-lockfile
- run: yarn setup:postinstall
- run: yarn build
- run: git diff --quiet || { echo 'working directory dirty after "yarn build"'; exit 1; }
- run: yarn lint
- run: yarn test
all-tests-pass:
runs-on: ubuntu-20.04
needs: build-lint-test
steps:
- run: echo "Great success"