Skip to content

chore(deps): bump semver from 6.3.0 to 6.3.1 #263

chore(deps): bump semver from 6.3.0 to 6.3.1

chore(deps): bump semver from 6.3.0 to 6.3.1 #263

Workflow file for this run

# @format
name: Node.js CI
on:
push:
branches: [main]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: 📌 Install
run: yarn
- name: 🔨 Build
run: yarn build
- name: 🧪 Test
run: yarn test:ci