Skip to content

Bump dset from 3.1.2 to 3.1.4 #755

Bump dset from 3.1.2 to 3.1.4

Bump dset from 3.1.2 to 3.1.4 #755

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