Skip to content

Add refresh of attester when modified and once a day #18

Add refresh of attester when modified and once a day

Add refresh of attester when modified and once a day #18

Workflow file for this run

---
name: Silk Privacy Pass Client Extension
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
testing:
name: Running on Node v${{ matrix.node-version }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 18]
steps:
- name: Checking out
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4
- name: Setup Node v${{ matrix.node-version }}
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3
with:
node-version: ${{ matrix.node-version }}
- name: Installing
run: npm ci
- name: Linting
run: npm run lint
- name: Building
run: npm run build
- name: Testing
run: npm test