Skip to content

Commit

Permalink
chore: init pattern package (#154)
Browse files Browse the repository at this point in the history
* chore: init pattern package
  • Loading branch information
fraxken authored Nov 23, 2023
1 parent ec81342 commit e460034
Show file tree
Hide file tree
Showing 15 changed files with 1,612 additions and 2 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/pattern.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Sigyn Pattern

on:
push:
branches: [main]
pull_request:
paths:
- "package-lock.json"
- "src/pattern/**"
- "!src/pattern/**/*.md"

permissions:
contents: read

jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
fail-fast: false
steps:
- name: Harden Runner
uses: step-security/harden-runner@eb238b55efaa70779f274895e782ed17c84f2895 # v2.6.1
with:
egress-policy: audit
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test --workspace=src/pattern
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ Click on one of the links to access the documentation of the package:
| --- | --- |
| logql | [@sigyn/logql](./src/logql) |
| morphix | [@sigyn/morphix](./src/morphix) |
| pattern | [@sigyn/pattern](./src/pattern) |

### Notifiers
| name | package and link |
Expand Down
Loading

0 comments on commit e460034

Please sign in to comment.