Skip to content

build(deps): bump @swc/core from 1.3.64 to 1.3.66 (#618) #2106

build(deps): bump @swc/core from 1.3.64 to 1.3.66 (#618)

build(deps): bump @swc/core from 1.3.64 to 1.3.66 (#618) #2106

Workflow file for this run

name: Lint
# Lint runs yarn lint over the entire DesmJS repository.
# This workflow is run on every pull request and push to main.
on:
pull_request:
push:
branches:
- main
jobs:
Lint:
name: yarn-lint
runs-on: ubuntu-latest
timeout-minutes: 6
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Compute diff 📜
uses: technote-space/[email protected]
with:
PATTERNS: |
**/*.+(js|ts|tsx)
FILES: |
package.json
yarn.lock
- name: Setup Node 👷
if: env.GIT_DIFF
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install 🔨
if: env.GIT_DIFF
run: yarn install --immutable
- name: Run lint ✅
if: env.GIT_DIFF
run: yarn lint