rulesCoverage #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: rulesCoverage | |
on: | |
schedule: | |
# Runs on every Monday 18:00 | |
- cron: '0 18 * * 1' | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
- name: Use Node.js 16 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: pnpm | |
- name: Install | |
run: npm run update | |
- name: Run tests | |
run: | | |
npm test && | |
npm run rulesCoverage |