-
Notifications
You must be signed in to change notification settings - Fork 12
41 lines (41 loc) · 984 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm install
- run: npm run build
- uses: actions/cache@v3
with:
path: |
./action.yml
./dist
key: ${{ hashFiles('./dist/**') }}
coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: npm ci
- run: npm run coverage
- name: Badges
uses: jpb06/jest-badges-action@latest
with:
branches: main
generate-private-key:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v3
with:
path: |
./action.yml
./dist
key: ${{ hashFiles('./dist/**') }}
- id: generate_private_key
uses: ./
with:
transmute: |
jose keygen --alg ES256 --verbose
- run: echo "${{ steps.generate_private_key.outputs.json }}"