mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
309944a41c
Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
30 lines
637 B
YAML
30 lines
637 B
YAML
name: Fixes Dryrun
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
- '!master'
|
|
pull_request:
|
|
branches: [master]
|
|
jobs:
|
|
fix-consistency:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
token: ${{ secrets.DANGER_GITHUB_API_TOKEN }}
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 12
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
- name: Run fix scripts
|
|
run: |
|
|
npm run resize
|
|
npm run format:all
|
|
npm run gen:list
|
|
- name: Show git status (diff)
|
|
run: git status
|
|
- name: Run test
|
|
run: npm t
|