Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(native-app): Add typecheck to native app into our pipeline #14607

Merged
merged 56 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
953ddb7
fix(native-app): Add typecheck to native app into our pipeline
snaerseljan Apr 24, 2024
c952868
add app to cache
snaerseljan Apr 24, 2024
37d7cca
ci: use composite action for cache
busla Apr 26, 2024
8736bc5
ci: fix path
busla Apr 26, 2024
bdd896d
ci: use github.workspace path prefix
busla Apr 26, 2024
0f676bd
ci: test composite action in a different dir
busla Apr 26, 2024
6277269
ci: remove filename from composite action
busla Apr 26, 2024
27a6413
ci: fix path
busla Apr 26, 2024
8df4257
ci: use composite action in all jobs
busla Apr 26, 2024
52aa537
ci: improve prepare-cache composite action
busla Apr 30, 2024
35ec618
ci: fix typo
busla Apr 30, 2024
313d693
ci: remove duplicate -yarn suffix
busla Apr 30, 2024
94da049
ci: debug info
busla Apr 30, 2024
2e3cd0a
ci: fix duplicate suffix
busla May 2, 2024
17427ad
ci: remove cachekey suffix
busla May 2, 2024
b6ca7e8
ci: fix typo
busla May 2, 2024
03e9286
ci: export vars
busla May 2, 2024
7a50266
ci: only extract files cache if cache success
busla May 2, 2024
a6fdfa5
ci: fix conditions
busla May 2, 2024
1cdcdc3
ci: debug generated-files cache
busla May 2, 2024
3ab5226
ci: debug
busla May 2, 2024
4821307
ci: conformity in conditions
busla May 2, 2024
34e879d
ci: move codegen step to composite action
busla May 6, 2024
7eec341
ci: remove concurrency temporarly
busla May 6, 2024
6ffa707
ci: fix outputs
busla May 6, 2024
81607e7
ci: have composite variables transitive
busla May 6, 2024
5a63735
ci: simplify composite action
busla May 6, 2024
520a699
ci: install node-modules
busla May 6, 2024
b503ec1
ci: fix typo
busla May 6, 2024
0da9f61
ci: fix typo
busla May 6, 2024
4d4f2e6
ci: export vars
busla May 6, 2024
4645b9d
ci: generated-files cache bust
busla May 6, 2024
7b9a780
ci: fix typo
busla May 6, 2024
bd85a21
ci: cleanup composite action
busla May 7, 2024
085215e
chore: nx format:write update dirty files
andes-it May 7, 2024
ff45462
ci: added calculate-cache-keys composite action
busla May 7, 2024
46efab9
Merge branch 'native-app-ci-cd-typecheck' of github.com:island-is/isl…
busla May 7, 2024
aafeabb
Merge branch 'main' into native-app-ci-cd-typecheck
busla May 7, 2024
e145da3
ci: readd concurrency
busla May 7, 2024
b13e8d7
ci: fix typo
busla May 7, 2024
06e6bf5
ci: fix typo
busla May 7, 2024
18d5cef
ci: fix typo
busla May 7, 2024
c5a13dd
ci: prepare generated-files in prepare job
busla May 7, 2024
447b023
ci: fix typo
busla May 7, 2024
8137ec3
ci: improve composite flow
busla May 7, 2024
3870893
Merge branch 'main' into native-app-ci-cd-typecheck
busla May 8, 2024
2136a61
ci: fix typo
busla May 8, 2024
16e022c
Merge branch 'native-app-ci-cd-typecheck' of github.com:island-is/isl…
busla May 8, 2024
afdb771
chore: nx format:write update dirty files
andes-it May 8, 2024
0ebf6d3
ci: refactor push workflow for composite action
busla May 17, 2024
fc7b39a
Merge branch 'native-app-ci-cd-typecheck' of github.com:island-is/isl…
busla May 17, 2024
0cc06d2
Merge branch 'main' into native-app-ci-cd-typecheck
busla May 17, 2024
4d2ee69
ci: remove continue-on-error
busla May 17, 2024
8d9fe46
Merge branch 'native-app-ci-cd-typecheck' of github.com:island-is/isl…
busla May 17, 2024
8c6ba68
chore: nx format:write update dirty files
andes-it May 17, 2024
7c4c288
Merge branch 'main' into native-app-ci-cd-typecheck
busla May 17, 2024
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
4 changes: 3 additions & 1 deletion .github/workflows/pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ jobs:
continue-on-error: true
uses: ./.github/actions/cache
with:
path: node_modules
path: |
snaerseljan marked this conversation as resolved.
Show resolved Hide resolved
node_modules
apps/native/app/node_modules
key: ${{ steps.calculate_node_modules_hash.outputs.node-modules-hash }}-yarn

- name: Check node-modules cache success
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,9 @@ jobs:
continue-on-error: true
uses: ./.github/actions/cache
with:
path: node_modules
path: |
node_modules
apps/native/app/node_modules
snaerseljan marked this conversation as resolved.
Show resolved Hide resolved
key: ${{ steps.calculate_node_modules_hash.outputs.node-modules-hash }}-yarn

- name: Check cache success
Expand Down
2 changes: 1 addition & 1 deletion apps/native/app/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"executor": "nx:run-commands",
"options": {
"cwd": "apps/native/app",
"command": "yarn build-mock"
"command": "yarn nx:typecheck"
}
},
"test": {
Expand Down
Loading