Skip to content

python-irodsclient: upgrade to v3.0.0 #1517

python-irodsclient: upgrade to v3.0.0

python-irodsclient: upgrade to v3.0.0 #1517

Workflow file for this run

name: "Javascript lint"
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
- name: Install standard and React plugin for ESlint
run: |
npm install standard@17.1.2 --location=global
npm install eslint@8.57.1 --location=global
npm install eslint-plugin-react@7.37.1 --location=global
- name: Lint with standard
run: |
standard
- name: Check for webpack bundles produced in development mode
run: |
if grep -l 'ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").' $(find . -name "*.js")
then echo "Error: found a webpack bundle that was produced in development mode (needs to be production mode)"
exit 1
fi