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 8bf391e commit 0364752Copy full SHA for 0364752
.github/workflows/ci.yml
@@ -1,4 +1,4 @@
1
-name: webpack-dev-server
+name: CI
2
3
on:
4
push:
@@ -63,6 +63,9 @@ jobs:
63
- name: Install dependencies
64
run: npm ci
65
66
+ - name: Link webpack-dev-server
67
+ run: npm link webpack-dev-server --ignore-scripts
68
+
69
- name: Run tests
70
run: npm run test:coverage -- --ci
71
.github/workflows/validate-pr-title.yml
@@ -1,18 +1,19 @@
name: Check PR title
- pull_request_target:
+ pull_request:
5
types:
6
- opened
7
- reopened
8
- edited
9
10
+permissions:
11
+ pull-requests: read
12
13
jobs:
14
main:
15
name: Validate PR title
16
runs-on: ubuntu-latest
- permissions:
- pull-requests: read
17
steps:
18
- uses: amannn/action-semantic-pull-request@48f256284bd46cdaab1048c3721360e808335d50 # v6.1.1
19
env:
0 commit comments