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