Skip to content

chore(deps-dev): bump @amanda-mitchell/node-project-scripts from 4.85.0 to 4.86.0 #486

chore(deps-dev): bump @amanda-mitchell/node-project-scripts from 4.85.0 to 4.86.0

chore(deps-dev): bump @amanda-mitchell/node-project-scripts from 4.85.0 to 4.86.0 #486

Workflow file for this run

name: Build PR
on: pull_request
jobs:
lint:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: yarn --frozen-lockfile --ignore-scripts
- name: Prettier check
run: yarn prettier --check "./**/*.{js,md,cjs,mjs,jsx,ts,tsx}"
- name: Lint
run: yarn eslint "./**/*.{js,jsx,mjs,cjs,ts,tsx}"
- name: Typescript compile
run: yarn tsc
- name: Test
run: yarn jest
env:
NODE_OPTIONS: --experimental-vm-modules