File tree Expand file tree Collapse file tree 5 files changed +21
-10
lines changed
Expand file tree Collapse file tree 5 files changed +21
-10
lines changed Original file line number Diff line number Diff line change 44 repository_dispatch :
55 workflow_dispatch :
66 schedule :
7- - cron : ' 0 0 1 * *' # Trigger the workflow every month
7+ - cron : ' 0 0 1 * *' # Trigger the workflow every month
88
99jobs :
1010 build_and_check :
1414 - uses : actions/setup-node@v3
1515 with :
1616 node-version : 18
17- - run : yarn && yarn build
17+ - name : Install dependencies (frozen) and build
18+ run : |
19+ yarn install --frozen-lockfile
20+ yarn build
1821
1922 - name : Link Checker
2023 id : lychee
Original file line number Diff line number Diff line change 1616 node-version : ${{ matrix.node-version }}
1717 - name : lint
1818 run : |
19- yarn
19+ yarn install --frozen-lockfile
2020 yarn lint
2121 working-directory : ./
2222 run_tests :
3333 node-version : ${{ matrix.node-version }}
3434 - name : unit_test
3535 run : |
36- yarn
36+ yarn install --frozen-lockfile
3737 yarn test
3838 working-directory : ./
3939 build_code :
5050 node-version : ${{ matrix.node-version }}
5151 - name : build
5252 run : |
53- yarn
53+ yarn install --frozen-lockfile
5454 yarn build
5555 working-directory : ./
Original file line number Diff line number Diff line change 2929 with :
3030 node-version : 18
3131 - run : npm install -g yarn
32- - run : yarn && yarn build
32+ - name : Install dependencies (frozen) and build
33+ run : |
34+ yarn install --frozen-lockfile
35+ yarn build
3336 - id : deploy_firebase_hosting_channel
3437 uses : FirebaseExtended/action-hosting-deploy@v0
3538 with :
5154 with :
5255 node-version : 18
5356 - name : Install dependencies
54- run : yarn install --immutable --immutable-cache --check-cache
57+ run : yarn install --frozen-lockfile
5558 - name : Install Playwright Browsers
5659 run : npx playwright install --with-deps
5760 - name : Run Playwright tests
Original file line number Diff line number Diff line change 1919 with :
2020 node-version : 18
2121
22- - name : install dependencies & build
23- run : yarn && yarn build
22+ - name : Install dependencies (frozen) and build
23+ run : |
24+ yarn install --frozen-lockfile
25+ yarn build
2426
2527 - name : Configure AWS Credentials
2628 uses : aws-actions/configure-aws-credentials@v1
Original file line number Diff line number Diff line change 1111 - uses : actions/setup-node@v3
1212 with :
1313 node-version : 18
14- - run : yarn && yarn build
14+ - name : Install dependencies (frozen) and build
15+ run : |
16+ yarn install --frozen-lockfile
17+ yarn build
1518 - name : Configure AWS Credentials
1619 uses : aws-actions/configure-aws-credentials@v1
1720 with :
You can’t perform that action at this time.
0 commit comments