Skip to content

chore(deps): bump tar from 6.2.0 to 6.2.1 #480

chore(deps): bump tar from 6.2.0 to 6.2.1

chore(deps): bump tar from 6.2.0 to 6.2.1 #480

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