Skip to content

[dependencies-replacement] Update package-json to latest, removing transitive dependencies #440

[dependencies-replacement] Update package-json to latest, removing transitive dependencies

[dependencies-replacement] Update package-json to latest, removing transitive dependencies #440

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: yarn
- name: Run Tests
run: yarn test
typescript:
name: TypeScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: yarn
- name: Check Types
run: yarn tsc
formatting:
name: Formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: yarn
- name: Check Formatting
run: yarn format:check
knip:
name: Knip
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install Dependencies
run: yarn
- name: Check Knip
run: yarn knip