Skip to content

Commit 4ecf7fe

Browse files
committed
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.
1 parent 2086b35 commit 4ecf7fe

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

.github/workflows/integration.yml

-12
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,6 @@ jobs:
3636
- name: Checkout local repository
3737
uses: actions/checkout@v2
3838

39-
- name: Build action
40-
run: |
41-
npm install
42-
npm run build
43-
npm run pack
44-
4539
# 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.
4640
- name: Run action
4741
uses: ./
@@ -65,12 +59,6 @@ jobs:
6559
- name: Checkout local repository
6660
uses: actions/checkout@v2
6761

68-
- name: Build action
69-
run: |
70-
npm install
71-
npm run build
72-
npm run pack
73-
7462
# The contents of the test data path are structured so that the step will fail if arduino-lint is run with the default configuration.
7563
- name: Run action
7664
id: arduino-lint

0 commit comments

Comments
 (0)