Skip to content

docs: update diagram #23

docs: update diagram

docs: update diagram #23

Workflow file for this run

name: quality checks
on:
# manual
workflow_dispatch:
# pull_request:
# this will inclue secrets of the repo in pull requests
pull_request_target:
branches:
- master
push:
branches:
- master
paths:
- src/**.ts
- package.json
- tsconfig.json
- .github/workflows/**.yml
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: |
cat <<EOF >> .env
ACCESSKEY_ID=${{ secrets.ACCESSKEY_ID }}
SECRET_ACCESS_KEY=${{ secrets.SECRET_ACCESS_KEY }}
EOF
cat .env
- run: |
npm install --silent
npm test
fmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- run: |
npm install --silent
npm run fmt:check