Skip to content

chore(deps): bump get-port from 5.1.1 to 7.1.0 #94

chore(deps): bump get-port from 5.1.1 to 7.1.0

chore(deps): bump get-port from 5.1.1 to 7.1.0 #94

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- master
jobs:
main:
name: Build & Test
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
# Required for yarn, when run via act locally
- name: Install Dependencies
run: yarn install
- name: Lint Commit Message
run: |
echo $(git log -1 --pretty=format:"%s") | yarn commitlint
- name: Build
run: yarn build
- name: Test
run: yarn test