Git Product home page Git Product logo

skills-test-with-actions's Introduction

Test with Actions

Create workflows that enable you to use Continuous Integration (CI) for your projects.

Step 3: Upload test reports

The workflow has finished running! ✨

So what do we do when we need the work product of one job in another? We can use the built-in artifact storage to save artifacts created from one job to be used in another job within the same workflow.

To upload artifacts to the artifact storage, we can use an action built by GitHub: actions/upload-artifacts.

⌨️ Activity: Upload test reports

  1. Edit your workflow file.

  2. Update the Run markdown lint step in your build job to use vfile-reporter-json and output the results to remark-lint-report.json.

  3. Add a step to your build job that uses the upload-artifact action. This step should upload the remark-lint-report.json file generated by the updated Run markdown lint step.

  4. Your new build should look like this:

    build:
      runs-on: ubuntu-latest
      steps:
        - uses: actions/checkout@v4
    
        - name: Run markdown lint
          run: |
            npm install remark-cli remark-preset-lint-consistent vfile-reporter-json
            npx remark . --use remark-preset-lint-consistent --report vfile-reporter-json 2> remark-lint-report.json
    
        - uses: actions/upload-artifact@v3
          with:
            name: remark-lint-report
            path: remark-lint-report.json
  5. Commit your change to this branch.

  6. Wait about 20 seconds and then refresh this page (the one you're following instructions from). GitHub Actions will automatically update to the next step.

Like the upload action to send artifacts to the storage, you can use the download action to download these previously uploaded artifacts from the build job: actions/download-artifact. For brevity, we'll skip that step for this course.


Get help: Post in our discussion boardReview the GitHub status page

© 2023 GitHub • Code of ConductMIT License

skills-test-with-actions's People

Contributors

github-actions[bot] avatar rajkmajk avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.