Skip to content

Commit

Permalink
try to store artifacts
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Abraham <cjyabraham@gmail.com>
  • Loading branch information
cjyabraham committed May 19, 2024
1 parent cec6b81 commit 14203f7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/build_deploy_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,15 @@ jobs:
- name: run PHP build step
run: ./.github/workflows/php

- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: build-artifacts
path: |
vendor
web
drush
code_sniff_unit_test:
runs-on: ubuntu-latest
Expand All @@ -138,6 +147,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

- name: Download build artifacts
uses: actions/download-artifact@v2
with:
name: build-artifacts

- name: Check for WordPress coding standards
run: composer -n code-sniff

Expand Down

0 comments on commit 14203f7

Please sign in to comment.