parent
ee0326c9f4
commit
1b01a1241d
3 changed files with 30 additions and 1 deletions
28
.forgejo/workflows/deploy.yml
Normal file
28
.forgejo/workflows/deploy.yml
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: arch
|
||||||
|
steps:
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Install dependencies
|
||||||
|
run: npm install
|
||||||
|
- name: Run Tests
|
||||||
|
run: npm run test -- --ignore-only
|
||||||
|
- name: Deply
|
||||||
|
run: |
|
||||||
|
CURR_VER=$(cat package.json | jq -r .version)
|
||||||
|
echo "Checking https://git.nfp.is/api/v1/repos/$APPVEYOR_REPO_NAME/releases for version v${CURR_VER}"
|
||||||
|
curl -s -X GET -H "Authorization: token ${{ secrets.deploytoken }}" https://git.nfp.is/api/v1/repos/${{ gitea.repository }}/releases | grep -o "\"name\"\:\"v${CURR_VER}\"" > /dev/null
|
||||||
|
|
||||||
|
if curl -s -X GET -H "Authorization: token ${{ secrets.deploytoken }}" https://git.nfp.is/api/v1/repos/${{ gitea.repository }}/releases | grep -o "\"name\":\"v${CURR_VER}\"" > /dev/null; then
|
||||||
|
echo "Skipping ${{ gitea.job }} since $CURR_NAME already exists";
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "Deploying version $CURR_VER to NPM"
|
|
@ -4,7 +4,7 @@
|
||||||
"description": "Flaska is a micro web-framework for node. It is designed to be fast, simple and lightweight, and is distributed as a single file module with no dependencies.",
|
"description": "Flaska is a micro web-framework for node. It is designed to be fast, simple and lightweight, and is distributed as a single file module with no dependencies.",
|
||||||
"main": "flaska.mjs",
|
"main": "flaska.mjs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "eltro",
|
"test": "eltro -r dot",
|
||||||
"test:watch": "eltro -r dot -w test"
|
"test:watch": "eltro -r dot -w test"
|
||||||
},
|
},
|
||||||
"watch": {
|
"watch": {
|
||||||
|
|
|
@ -1095,5 +1095,6 @@ t.describe('#closeAsync()', function() {
|
||||||
})
|
})
|
||||||
let res = await flaska.closeAsync()
|
let res = await flaska.closeAsync()
|
||||||
assert.notOk(res)
|
assert.notOk(res)
|
||||||
|
assert.ok(false)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in a new issue