Skip to content

Build(deps-dev): Bump @rushstack/eslint-patch in /Front #209

Build(deps-dev): Bump @rushstack/eslint-patch in /Front

Build(deps-dev): Bump @rushstack/eslint-patch in /Front #209

Workflow file for this run

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: "https://npm.pkg.github.com/@lucaswerey"
- name: Prepare .npmrc
run: echo "//npm.pkg.github.com/:_authToken=${{ secrets.NPM_TOKEN }}" > Front/.npmrc
- name: Install dependencies
run: cd Front && npm ci
- name: Run linter
run: cd Front && npm run lint