Skip to content

Add a missing link to the Exercise 8 solution #25

Add a missing link to the Exercise 8 solution

Add a missing link to the Exercise 8 solution #25

Workflow file for this run

name: Check
on:
pull_request:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Prepare
run: npm ci
- name: Lint
run: npm run lint