breviarium 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,31 @@
1
+ name: Build project
2
+
3
+ on:
4
+ pull_request:
5
+ branches: [main]
6
+ types: [opened, reopened, closed]
7
+ push:
8
+ branches: [feat/*, feature/*, fix/*, hotfix/*]
9
+
10
+ permissions:
11
+ contents: write
12
+ packages: write
13
+
14
+ jobs:
15
+ build-and-publish:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout repository 👋🏼
19
+ uses: actions/checkout@v4
20
+
21
+ - name: Setup Node.js
22
+ uses: actions/setup-node@v4
23
+ with:
24
+ node-version: 20
25
+ registry-url: 'https://registry.npmjs.org/'
26
+
27
+ - name: Install dependencies 🔨
28
+ run: npm ci
29
+
30
+ - name: Build package 📦
31
+ run: npm run build
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "seasons",
15
15
  "liturgical"
16
16
  ],
17
- "version": "0.2.2",
17
+ "version": "0.2.3",
18
18
  "main": "dist/index.js",
19
19
  "types": "dist/index.d.ts",
20
20
  "type": "module",