Skip to content

Commit deb4cb1

Browse files
committed
try immutable install
1 parent 4d627ad commit deb4cb1

File tree

2 files changed

+38
-35
lines changed

2 files changed

+38
-35
lines changed

.github/workflows/ci.yaml

Lines changed: 34 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -12,42 +12,42 @@ on:
1212
type: string
1313
default: ''
1414

15-
env:
16-
CI_USER: cryostat+bot
17-
CI_REGISTRY: quay.io/cryostat
18-
CI_IMG: quay.io/cryostat/cryostat-openshift-console-plugin
19-
IMG_NAME: cryostat-openshift-console-plugin
15+
# env:
16+
# CI_USER: cryostat+bot
17+
# CI_REGISTRY: quay.io/cryostat
18+
# CI_IMG: quay.io/cryostat/cryostat-openshift-console-plugin
19+
# IMG_NAME: cryostat-openshift-console-plugin
2020

2121
jobs:
22-
format-check:
23-
runs-on: ubuntu-latest
24-
steps:
25-
- uses: actions/checkout@v4
26-
with:
27-
submodules: true
28-
fetch-depth: 0
29-
- uses: actions/setup-node@v4
30-
with:
31-
node-version: 'lts/*'
32-
cache: 'yarn'
33-
- uses: bahmutov/npm-install@v1
34-
- run: yarn format
22+
# format-check:
23+
# runs-on: ubuntu-latest
24+
# steps:
25+
# - uses: actions/checkout@v4
26+
# with:
27+
# submodules: true
28+
# fetch-depth: 0
29+
# - uses: actions/setup-node@v4
30+
# with:
31+
# node-version: 'lts/*'
32+
# cache: 'yarn'
33+
# - uses: bahmutov/npm-install@v1
34+
# - run: yarn format
3535

36-
lint:
37-
runs-on: ubuntu-latest
38-
steps:
39-
- uses: actions/checkout@v4
40-
with:
41-
submodules: true
42-
fetch-depth: 0
43-
- uses: actions/setup-node@v4
44-
with:
45-
node-version: 'lts/*'
46-
cache: 'yarn'
47-
- uses: bahmutov/npm-install@v1
48-
- run: yarn lint
36+
# lint:
37+
# runs-on: ubuntu-latest
38+
# steps:
39+
# - uses: actions/checkout@v4
40+
# with:
41+
# submodules: true
42+
# fetch-depth: 0
43+
# - uses: actions/setup-node@v4
44+
# with:
45+
# node-version: 'lts/*'
46+
# cache: 'yarn'
47+
# - uses: bahmutov/npm-install@v1
48+
# - run: yarn lint
4949

50-
type-check:
50+
build:
5151
runs-on: ubuntu-latest
5252
steps:
5353
- uses: actions/checkout@v4
@@ -56,11 +56,10 @@ jobs:
5656
fetch-depth: 0
5757
- uses: actions/setup-node@v4
5858
with:
59-
node-version: '20'
59+
node-version: '20.18.2'
6060
cache: 'yarn'
6161
- uses: bahmutov/npm-install@v1
62-
- run: yarn type-check:plugin
63-
- run: yarn install
62+
- run: yarn install --immutable
6463
- run: yarn build
6564

6665
# test:

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88
"type": "git",
99
"url": "https://github.com/cryostatio/cryostat-openshift-console-plugin.git"
1010
},
11+
"engines": {
12+
"node": "20.18.2",
13+
"npm": "10.8.2"
14+
},
1115
"scripts": {
1216
"clean": "rm -rf dist",
1317
"build": "yarn clean && NODE_ENV=production yarn webpack",

0 commit comments

Comments
 (0)