Skip to content

Bump p-queue from 6.6.2 to 7.4.1 #2

Bump p-queue from 6.6.2 to 7.4.1

Bump p-queue from 6.6.2 to 7.4.1 #2

Workflow file for this run

name: Checks
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run Lint
run: yarn lint
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install
- name: Run build
run: yarn build