Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@ jobs:
name: audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.19.0'
- run: npm i
node-version: '20'
- run: npm install
- run: npm audit --production --level-critical
test:
name: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 'lts/*'
node-version: '20'
- run: npm install
- run: npm run test
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
node-version: '20.19.0'
node-version: '20'
registry-url: 'https://registry.npmjs.org'
- run: |
if [ -e yarn.lock ]; then
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '20.19.0'
node-version: '20'
- name: Install dependencies
run: npm ci
- name: Release
Expand Down
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rwanda",
"version": "3.0.1",
"version": "3.0.2",
"description": "This package provides you access to provinces, districts, sectors, villages and cells found in Rwanda",
"type": "module",
"files": [
Expand Down Expand Up @@ -28,16 +28,17 @@
"prepare": "husky install"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@biomejs/biome": "^2.5.8",
"husky": "^9.1.7",
"pathe": "^2.0.3",
"typescript": "^5.9.2",
"vite": "^7.1.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.2.4"
"typescript": "^5.9.3",
"vite": "^7.3.6",
"vite-plugin-dts": "^5.0.3",
"vitest": "^3.2.7"
},
"packageManager": "yarn@1.22.22",
"engines": {
"node": "20.19.0"
"node": ">=20.19.0"
},
"license": "MIT",
"repository": {
Expand Down
Loading
Loading