We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27ff35a commit 7045161Copy full SHA for 7045161
.github/workflows/main.yml
@@ -1,24 +1,26 @@
1
name: Main
2
on:
3
+ workflow_dispatch:
4
+ schedule:
5
+ - cron: "0 1 * * *"
6
push:
7
branches:
8
- main
9
10
permissions:
11
actions: write
12
contents: read
13
+ id-token: write
14
15
jobs:
16
build:
17
runs-on: ubuntu-latest
18
strategy:
19
matrix:
- node: [ 18 ]
20
+ node: [ 18, 20 ]
21
+
22
name: Node ${{ matrix.node }} sample
23
steps:
- - name: Cancel Previous Runs
- uses: styfle/[email protected]
-
24
- name: Checkout repo
25
uses: actions/checkout@v4
26
@@ -33,7 +35,7 @@ jobs:
33
35
- name: Run tests
34
36
run: npm test
37
- - uses: qltyai/qlty-action/coverage@main
38
+ - uses: qltysh/qlty-action/coverage@main
39
with:
- coverage-token: ${{ secrets.QLTY_COVERAGE_TOKEN }}
- file: coverage/lcov.info
40
+ oidc: true
41
+ files: coverage/lcov.info
0 commit comments