Skip to content
This repository has been archived by the owner on May 22, 2024. It is now read-only.

Feature/with prefix #14

Feature/with prefix

Feature/with prefix #14

Workflow file for this run

name: Check pull requests
on:
pull_request:
types: [opened, edited, reopened, synchronize]
jobs:
check-pr:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
- name: Install dependencies
run: npm install
- name: Lint code
run: npm run lint
- name: Build library
run: npm run build
- name: Generate documentation
run: npm run docs:generate