cron #218
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: cron | |
on: | |
schedule: | |
- cron: "0 0 * * 0" # @weekly https://crontab.guru/ | |
jobs: | |
test: | |
name: Scheduled fitness function verification | |
runs-on: ubuntu-latest | |
env: | |
YARN_NODE_LINKER: node-modules | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: 22 | |
- run: corepack enable | |
- run: yarn install | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
- run: yarn npm audit --severity moderate | |
- run: yarn libyear | |
continue-on-error: true | |
- run: npm run libyear | |
continue-on-error: true | |
- run: pnpm libyear | |
continue-on-error: true | |
timeout-minutes: 15 |