Skip to content

Bump babel-loader from 8.1.0 to 9.2.1 #211

Bump babel-loader from 8.1.0 to 9.2.1

Bump babel-loader from 8.1.0 to 9.2.1 #211

Workflow file for this run

name: lint
on:
pull_request:
push:
branches:
- main
jobs:
frontend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['16']
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Set up Node ${{ matrix.node-version }}.x
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Check if package-lock.json is up to date
run: npx --yes [email protected]
- name: Install app dependencies
run: npm ci
- name: Lint frontend code with ESLint
run: npm run lint