Skip to content

chore: update challenge #04 difficulty #42

chore: update challenge #04 difficulty

chore: update challenge #04 difficulty #42

Workflow file for this run

name: Solutions for AdventJs Challenges
on:
push:
branches:
- master
jobs:
lint:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Type, Lint and Format check
run: pnpm run check
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Testing Challenge Solutions
run: pnpm run test