Skip to content

chore(deps-dev): bump @amanda-mitchell/node-project-scripts from 4.80.0 to 4.82.0 #482

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

chore(deps-dev): bump @amanda-mitchell/node-project-scripts from 4.80.0 to 4.82.0 #482

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