Skip to content

Merge pull request #2 from sergix44/fix-capitalization #18

Merge pull request #2 from sergix44/fix-capitalization

Merge pull request #2 from sergix44/fix-capitalization #18

Workflow file for this run

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 18.x ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Npm install
run: npm ci
- name: Execute tests
run: npm run tests