You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove unnecessary build steps from integration test workflow
Now that the development policy is to continuously package the project, and this policy is enforced by a CI workflow,
The action will always be pre-built, so building it again during the integration test workflow runs is pointless.
One of the build steps was removed from the workflow at the time the development policy was changed, but the build
steps in the other two jobs were missed at that time.
Copy file name to clipboardExpand all lines: .github/workflows/integration.yml
-12
Original file line number
Diff line number
Diff line change
@@ -36,12 +36,6 @@ jobs:
36
36
- name: Checkout local repository
37
37
uses: actions/checkout@v2
38
38
39
-
- name: Build action
40
-
run: |
41
-
npm install
42
-
npm run build
43
-
npm run pack
44
-
45
39
# The contents of the test data path are structured so that the step will fail if arduino-lint is not run with the configuration according to these inputs.
46
40
- name: Run action
47
41
uses: ./
@@ -65,12 +59,6 @@ jobs:
65
59
- name: Checkout local repository
66
60
uses: actions/checkout@v2
67
61
68
-
- name: Build action
69
-
run: |
70
-
npm install
71
-
npm run build
72
-
npm run pack
73
-
74
62
# The contents of the test data path are structured so that the step will fail if arduino-lint is run with the default configuration.
0 commit comments