Update blank.yml #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wiresec Tools Pipeline | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
installing-packages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache node modules | |
uses: actions/cache@v2 | |
with: | |
path: wiresec_modules | |
key: ${{ runner.os }}-${{ hashFiles('**/apt.lock')}} | |
- name: Install dependencies | |
run: sudo apt-get install git |