Skip to content

Bump express from 4.18.1 to 4.21.0 #756

Bump express from 4.18.1 to 4.21.0

Bump express from 4.18.1 to 4.21.0 #756

Workflow file for this run

name: Lint
on: push
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
registry-url: https://npm.pkg.github.com
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: yarn install
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
prettier: true