mirror of
https://github.com/RoboSats/robosats.git
synced 2025-09-08 17:24:16 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
45 lines
958 B
YAML
45 lines
958 B
YAML
name: "Lint: Javascript Client"
|
|
|
|
on:
|
|
# Trigger the workflow on push or pull request,
|
|
# but only for the main branch
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- frontend
|
|
pull_request_target:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- frontend
|
|
|
|
jobs:
|
|
run-linters:
|
|
name: Run linters
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Check out Git repository
|
|
uses: actions/checkout@v5
|
|
|
|
- name: 'Setup node'
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 16.17.0
|
|
cache: npm
|
|
cache-dependency-path: frontend/package-lock.json
|
|
|
|
# ESLint and Prettier must be in `package.json`
|
|
- name: 'Install NPM Dependencies'
|
|
run: |
|
|
cd frontend
|
|
npm install
|
|
|
|
- name: Run linters
|
|
uses: wearerequired/lint-action@v2
|
|
with:
|
|
prettier: true
|
|
prettier_dir: frontend
|
|
eslint: true
|
|
eslint_dir: frontend |