Skip to content

Commit

Permalink
workflow: add workflow (#13)
Browse files Browse the repository at this point in the history
* workflow: add ci

* workflow: add ci

* fix: workfliw

Co-authored-by: yugang.cao <[email protected]>
  • Loading branch information
Talljack and yugang.cao authored Dec 5, 2022
1 parent d51bd43 commit 6d523c4
Show file tree
Hide file tree
Showing 6 changed files with 556 additions and 16,778 deletions.
7 changes: 7 additions & 0 deletions .github/.dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: npm
directory: "/"
schedule:
interval: weekly
open-pull-requests-limit: 10
46 changes: 46 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# 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

on:
push:
branches: [ main]
pull_request:
branches: [ main ]

jobs:
build:
environment: test

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
- uses: actions/checkout@v3

- name: Install pnpm
uses: pnpm/[email protected]
with:
version: latest

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: pnpm install
# TODO:添加lint
- name: Test
run: pnpm run test

- name: Code coverage
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
directory: ./coverage
verbose: true
2 changes: 1 addition & 1 deletion demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
},
"dependencies": {
"vue": "^3.0.5",
"vue3-hotkey": "^1.0.1"
"vue3-hotkey": "^1.0.3"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.2.2",
Expand Down
Loading

2 comments on commit 6d523c4

@vercel
Copy link

@vercel vercel bot commented on 6d523c4 Dec 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue3-hot-key-demo – ./demo

vue3-hot-key-demo-talljack.vercel.app
vue3-hot-key-demo.vercel.app
vue3-hot-key-demo-git-main-talljack.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 6d523c4 Dec 5, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

vue3-hot-key – ./

vue3-hot-key.vercel.app
vue3-hot-key-talljack.vercel.app
vue3-hot-key-git-main-talljack.vercel.app

Please sign in to comment.