mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 01:57:57 +00:00
0dfd378e2e
Workflows: - lock.yml: GH_PAT_BOT → github.token - chain-endpoints.yml: repo name polkadot-js/apps → pezkuwichain/pezkuwi-apps - test-nightly.yml: add 120min timeout - auto-approve.yml: update token and authors - auto-merge.yml: update token Dependencies: - @polkadot/vanitygen → @pezkuwi/vanitygen
25 lines
470 B
YAML
25 lines
470 B
YAML
name: Nightly tests run
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '1 5 * * *'
|
|
|
|
|
|
jobs:
|
|
alltests:
|
|
strategy:
|
|
matrix:
|
|
step: ['test:all']
|
|
name: ${{ matrix.step }}
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 120
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 'lts/*'
|
|
- name: ${{ matrix.step }}
|
|
run: |
|
|
yarn install --immutable
|
|
yarn ${{ matrix.step }}
|