We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb4e067 commit 2c96a15Copy full SHA for 2c96a15
2 files changed
.github/workflows/check.yml
@@ -3,10 +3,11 @@ name: Check Codebase
3
on:
4
pull_request:
5
branches:
6
- - main
+ - master
7
push:
8
9
10
+ workflow_dispatch:
11
12
permissions:
13
contents: read
.github/workflows/test.yml
@@ -41,6 +41,11 @@ jobs:
41
# Steps represent a sequence of tasks that will be executed as part of the job
42
steps:
43
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
44
+ - name: Checkout
45
+ uses: actions/checkout@v4
46
+ with:
47
+ fetch-depth: 0
48
+
49
- name: Setup Node.js
50
uses: actions/setup-node@v6
51
with:
0 commit comments