Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/actions/update-generated-files/action.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .github/actions/update-generated-files/run.sh

This file was deleted.

8 changes: 4 additions & 4 deletions .github/workflows/hello-world.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,10 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn
- run: yarn format-check
- run: yarn lint
- run: yarn test

build:
generate:
runs-on: ubuntu-latest
defaults:
run:
Expand All @@ -53,12 +52,13 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-
- run: yarn
- run: yarn format
- run: yarn build
- run: yarn package
- uses: ./.github/actions/update-generated-files
- uses: int128/update-generated-files-action@main

e2e-test:
needs: [build]
needs: [generate]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down