Skip to content

Commit

Permalink
chore: auto release (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
fengmk2 committed Dec 17, 2022
1 parent f9a9747 commit 9804ad5
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 55 deletions.
10 changes: 0 additions & 10 deletions .editorconfig

This file was deleted.

52 changes: 12 additions & 40 deletions .github/workflows/nodejs.yml
@@ -1,46 +1,18 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI
name: CI

on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
schedule:
- cron: '0 2 * * *'

jobs:
build:
runs-on: ${{ matrix.os }}

strategy:
fail-fast: false
matrix:
node-version: [14, 16, 18]
os: [ubuntu-latest]
branches: [ master ]

steps:
- name: Checkout Git Source
uses: actions/checkout@v2

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: npm i
pull_request:
branches: [ master ]

- name: Continuous Integration
run: npm run ci
workflow_dispatch: {}

- name: Code Coverage
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
jobs:
Job:
name: Node.js
uses: artusjs/github-actions/.github/workflows/node-test.yml@v1
with:
os: 'ubuntu-latest'
version: '14, 16, 18'
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
@@ -0,0 +1,17 @@
name: Release

on:
push:
branches: [ master ]

workflow_dispatch: {}

jobs:
release:
name: Node.js
uses: artusjs/github-actions/.github/workflows/node-release.yml@v1
secrets:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
with:
checkTest: false
5 changes: 0 additions & 5 deletions package.json
Expand Up @@ -27,7 +27,6 @@
"devDependencies": {
"command-line-test": "1",
"egg-bin": "^5.2.0",
"egg-ci": "^2.1.0",
"eslint": "^8.23.1",
"eslint-config-egg": "^12.0.0",
"git-contributor": "1",
Expand All @@ -41,10 +40,6 @@
"lint": "eslint .",
"contributor": "git-contributor"
},
"ci": {
"os": "linux",
"version": "14, 16, 18"
},
"homepage": "https://github.com/node-modules/detect-port",
"license": "MIT"
}

0 comments on commit 9804ad5

Please sign in to comment.