Skip to content

Commit 6d23b73

Browse files
committed
Updated exercise script to latest
1 parent 7faa883 commit 6d23b73

14 files changed

Lines changed: 3380 additions & 260 deletions

.github/workflows/main.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- "**"
6+
7+
jobs:
8+
check:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v3
12+
- uses: actions/setup-node@v3
13+
with:
14+
node-version: 16.x
15+
16+
- run: npm install --frozen-lockfile
17+
- run: npm run ci

notes/FUTURE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ Function overloads in custom hooks?
44
function overloads in components?
55
Omit, Pick, inferface extends with props
66
Picking props from external libraries
7+
Running TypeScript on CI

0 commit comments

Comments
 (0)