Force update dependencies and build #6
Workflow file for this run
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: Force update dependencies and build | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
update-and-build: | |
name: Update dependencies and build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install initial dependencies | |
run: | | |
npm i -g yarn | |
yarn install --no-lockfile | |
- name: Run that shit | |
run: | | |
node forceUpdateDeps.mjs | |
yarn turbo build |