Skip to content

Ver/5.38.15

Ver/5.38.15 #154

Workflow file for this run

name: PR
on: [pull_request]
jobs:
pr:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: https://npm.pkg.github.com/
scope: '@seekingalpha'
- name: Install dependencies
run: npm install --ignore-scripts
env:
NODE_AUTH_TOKEN: ${{ secrets.GPR_INSTALL_TOKEN }}
- name: ESLint
run: npm run lint
- name: Prettier
run: npm run prettier:check