Skip to content

docs: Fixed README and package.json #4

docs: Fixed README and package.json

docs: Fixed README and package.json #4

Workflow file for this run

name: Checks
on:
workflow_dispatch:
pull_request:
branches: [ "develop" ]
push:
branches: [ "develop" ]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v4
- name: Get dependencies
run: npm ci
- name: Run linter
run: npm run lint
test:
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v4
- name: Get dependencies
run: npm ci
- name: Run tests
run: npm run test
build:
runs-on: ubuntu-latest
steps:
- name: Get repository code
uses: actions/checkout@v4
- name: Get dependencies
run: npm ci
- name: Run build
run: npm run build