Skip to content

chore(deps): bump semver-regex from 3.1.3 to 3.1.4 #167

chore(deps): bump semver-regex from 3.1.3 to 3.1.4

chore(deps): bump semver-regex from 3.1.3 to 3.1.4 #167

Workflow file for this run

name: 'Run Tests'
on:
push:
branches:
- main
pull_request:
jobs:
test:
if: |
contains(github.event.commits[0].message, '[skip ci]') == false &&
contains(github.event.commits[0].message, '[ci skip]') == false
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node-version: [20.x]
steps:
- name: 'Checkout Git repository with history for all branches and tags'
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: 'Use Node.js ${{ matrix.node-version }}'
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: 'Install, lint, and test'
run: |
yarn install --frozen-lockfile
yarn lint
yarn test