add missing steps

This commit is contained in:
James Salter 2021-10-19 13:12:17 +01:00
parent 1d9bdd732f
commit a60dc77468

View file

@ -16,7 +16,7 @@ jobs:
- run: yarn lint:js - run: yarn lint:js
- run: yarn lint:types - run: yarn lint:types
- run: yarn lint:style - run: yarn lint:style
build-stats: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
@ -24,6 +24,7 @@ jobs:
with: with:
node-version: '14' node-version: '14'
cache: 'yarn' cache: 'yarn'
- run: ./scripts/fetch-develop.deps.sh --depth 1
- run: yarn install - run: yarn install
- run: yarn build-stats - run: yarn build-stats
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
@ -37,6 +38,7 @@ jobs:
with: with:
node-version: '14' node-version: '14'
cache: 'yarn' cache: 'yarn'
- run: ./scripts/fetch-develop.deps.sh --depth 1
- run: yarn install - run: yarn install
- run: yarn build:genfiles - run: yarn build:genfiles
- run: yarn test - run: yarn test
@ -48,6 +50,7 @@ jobs:
with: with:
node-version: '14' node-version: '14'
cache: 'yarn' cache: 'yarn'
- run: ./scripts/fetch-develop.deps.sh --depth 1
- run: yarn install - run: yarn install
- run: yarn diff-i18n - run: yarn diff-i18n
package: package:
@ -59,6 +62,8 @@ jobs:
with: with:
node-version: '14' node-version: '14'
cache: 'yarn' cache: 'yarn'
- run: ./scripts/fetch-develop.deps.sh --depth 1
- run: yarn install
- run: ./scripts/ci_package.sh - run: ./scripts/ci_package.sh
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v2
with: with: