Remove hidden files from node_modules #143
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
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
name: Test Action | |
on: | |
push: | |
branches: | |
- '*' | |
jobs: | |
test-action: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: Set up Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
- name: Install dependencies | |
run: npm ci | |
- name: Run your action with sigstore and Archivista | |
uses: ./ # Replace this with the path to your action if different | |
with: | |
step: test | |
command: echo hello > hello.txt | |
enable-sigstore: true | |
enable-archivista: true |