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
Copy file name to clipboardExpand all lines: .github/workflows/test.yaml
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,27 @@ on:
9
9
- "**"
10
10
11
11
jobs:
12
+
lint:
13
+
runs-on: ubuntu-latest
14
+
steps:
15
+
- name: Checkout
16
+
uses: actions/checkout@v4
17
+
- name: Setup node
18
+
uses: actions/setup-node@v4
19
+
with:
20
+
node-version: '20'
21
+
check-latest: true
22
+
- name: Setup pnpm
23
+
uses: pnpm/action-setup@v4
24
+
with:
25
+
version: latest
26
+
- name: Install dependencies
27
+
run: pnpm install
28
+
- name: Run ESLint on core packages
29
+
run: pnpm --filter=@firebase-ui/core run lint && pnpm --filter=@firebase-ui/react run lint && pnpm --filter=@firebase-ui/translations run lint && pnpm --filter=@firebase-ui/styles run lint
0 commit comments