Skip to content

ci(deps): bump actions/setup-node from 6.3.0 to 6.4.0 #209

ci(deps): bump actions/setup-node from 6.3.0 to 6.4.0

ci(deps): bump actions/setup-node from 6.3.0 to 6.4.0 #209

Workflow file for this run

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v3
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Lint
run: npm run lint