Skip to content

Commit 2131d90

Browse files
committed
ci: configure self-hosted CI
1 parent f65c37f commit 2131d90

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/sh-test.yml renamed to .github/workflows/self-hosted-ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: sh-test
1+
name: ci-tests
22
on:
33
push:
44
workflow_dispatch:
@@ -9,7 +9,7 @@ jobs:
99
steps:
1010
- uses: actions/checkout@v4
1111
- name: Install
12-
uses: './.github/actions/cached-npm-install'
12+
run: npm install
1313
- name: Run linter
1414
run: npm run lint
1515
specs:
@@ -18,7 +18,7 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020
- name: Install
21-
uses: './.github/actions/cached-npm-install'
21+
run: npm install
2222
- name: Run unit tests
2323
run: npm test
2424
env:
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v4
3131
- name: Install
32-
uses: './.github/actions/cached-npm-install'
32+
run: npm install
3333
- name: Run e2e tests
3434
continue-on-error: false
3535
run: |
@@ -42,6 +42,6 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v4
4444
- name: Install
45-
uses: './.github/actions/cached-npm-install'
45+
run: npm install
4646
- name: Build package
4747
run: npm run build:pkg

0 commit comments

Comments
 (0)