Skip to content

Update test_action's GHA and move witness to dist directory #140

Update test_action's GHA and move witness to dist directory

Update test_action's GHA and move witness to dist directory #140

Workflow file for this run

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