We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afaee3c commit f0a02ccCopy full SHA for f0a02cc
.circleci/config.yml
.github/workflows/issues.yml
@@ -1,11 +1,12 @@
1
+name: Issue Bot
2
+
3
on: issues
-name: Run issue bot
4
5
jobs:
6
build:
- name: nativescript-vue/issue-bot-action
7
runs-on: ubuntu-latest
8
9
steps:
- - uses: actions/checkout@master
10
11
uses: nativescript-vue/issue-bot-action@master
12
env:
.github/workflows/unit.yml
@@ -0,0 +1,21 @@
+name: Unit Tests
+on:
+ push:
+ branches: [ $default-branch ]
+ pull_request:
+jobs:
+ build:
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - uses: actions/setup-node@v3
16
+ with:
17
+ node-version: 18
18
+ cache: 'yarn'
19
20
+ - run: yarn
21
+ - run: yarn test
0 commit comments