Skip to content

Add Chapter 2: Exploring Rust Basics #76

Add Chapter 2: Exploring Rust Basics

Add Chapter 2: Exploring Rust Basics #76

Workflow file for this run

name: PR workflow
on:
pull_request:
types: [opened, reopened, synchronize]
jobs:
linting-type-checks:
name: Linting, Formatting and Type checking
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Linting and Formatting checks
run: yarn run lint
- name: Type checking
run: yarn run typecheck