Skip to content

chore(deps): bump js-yaml from 4.1.0 to 4.3.0 #156

chore(deps): bump js-yaml from 4.1.0 to 4.3.0

chore(deps): bump js-yaml from 4.1.0 to 4.3.0 #156

Workflow file for this run

---
name: ci
on:
pull_request:
push:
branches:
- main
jobs:
static-checks:
name: lint + tsc + tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: yarn
- name: Cache node_modules
id: node-modules-cache
uses: actions/cache@v4
with:
path: |
node_modules
packages/*/node_modules
plugins/*/node_modules
.yarn/install-state.gz
key: ${{ runner.os }}-node-modules-${{ hashFiles('yarn.lock', '.yarnrc.yml', '.nvmrc') }}
- name: Install dependencies
if: steps.node-modules-cache.outputs.cache-hit != 'true'
run: yarn install --immutable
- name: Type check
run: yarn tsc
- name: Lint
run: yarn lint:all
- name: Unit tests
run: yarn test:all
- name: Prettier
run: yarn prettier:check