You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
22
+
- name: Run eslint
23
+
run: npm run lint
24
+
test:
25
+
name: Test
26
+
runs-on: ubuntu-latest
27
+
steps:
28
+
- name: Checkout
29
+
uses: actions/checkout@v3
30
+
- name: Setup Node.js
31
+
uses: actions/setup-node@v3
32
+
with:
33
+
node-version: lts/*
34
+
- name: Install dependencies
35
+
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
36
+
- name: Run tests
37
+
run: npm run test
38
+
build:
39
+
name: Build
40
+
runs-on: ubuntu-latest
41
+
steps:
42
+
- name: Checkout
43
+
uses: actions/checkout@v3
44
+
- name: Setup Node.js
45
+
uses: actions/setup-node@v3
46
+
with:
47
+
node-version: lts/*
48
+
- name: Install dependencies
49
+
run: npm install --legacy-peer-deps # TODO remove --legacy-peer-deps after https://github.com/patternfly/patternfly-react-seed/issues/134 is fixed
0 commit comments