Skip to content

build(deps): bump semver from 5.7.1 to 5.7.2 #146

build(deps): bump semver from 5.7.1 to 5.7.2

build(deps): bump semver from 5.7.1 to 5.7.2 #146

Workflow file for this run

name: Build, Lint, and Test
on: pull_request
jobs:
Build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Check out the code
uses: actions/checkout@v3
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Check linting
run: npm run lint
- name: Run tests
run: npm run test