forked from appium/appium-ios-remotexpc
-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (27 loc) · 677 Bytes
/
Copy pathlint.yml
File metadata and controls
31 lines (27 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
node_matrix:
uses: appium/appium-workflows/.github/workflows/node-lts-matrix.yml@main
lint:
runs-on: macos-latest
needs:
- node_matrix
strategy:
fail-fast: false
matrix:
node-version: ${{ fromJSON(needs.node_matrix.outputs.versions) }}
steps:
- uses: actions/checkout@v7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint