Skip to content

chore(deps): bump semver from 6.3.0 to 6.3.1 in /testEnv #2541

chore(deps): bump semver from 6.3.0 to 6.3.1 in /testEnv

chore(deps): bump semver from 6.3.0 to 6.3.1 in /testEnv #2541

Workflow file for this run

name: PR Check
on:
pull_request:
jobs:
test-lint-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: install
run: make -f ci.mk install
- name: check changesets
run: make -f ci.mk check_changesets
if: github.actor != 'dependabot[bot]'
- name: lint
run: make -f ci.mk lint
- name: test
run: make -f ci.mk test
- name: build
run: make -f ci.mk build