From e41ff4f0b0e465dc2f524137f360bc5c4e735e16 Mon Sep 17 00:00:00 2001 From: sinkaroid Date: Sat, 25 Jun 2022 09:35:18 +0700 Subject: [PATCH] ci: add testing for specify bots --- .github/workflows/bot-stats.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/bot-stats.yml diff --git a/.github/workflows/bot-stats.yml b/.github/workflows/bot-stats.yml new file mode 100644 index 0000000..8e2ec55 --- /dev/null +++ b/.github/workflows/bot-stats.yml @@ -0,0 +1,28 @@ +name: Bot stats test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x] + + steps: + - uses: actions/checkout@v2 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v2 + with: + node-version: ${{ matrix.node-version }} + - name: Install dependencies + run: npm install + + - name: Pururin test + run: npm run test:stats \ No newline at end of file