Skip to content

Changed the code to check for the first letter of the PR #41

Changed the code to check for the first letter of the PR

Changed the code to check for the first letter of the PR #41

Workflow file for this run

name: Test
on: ['push', 'pull_request']
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm run lint
- run: npm run build
- run: npm run test