Skip to content

feat: Use commit message and PR title to determine story #4

feat: Use commit message and PR title to determine story

feat: Use commit message and PR title to determine story #4

Workflow file for this run

name: Node.js CI
on:
push:
branches: [ $default-branch ]
pull_request:
types: [opened, synchronize]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 20.11.0]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: yarn install
- run: yarn test