Skip to content

Commit a50be99

Browse files
committed
ci: update GitHub Actions workflow to include build step and rename lint job
1 parent e0b23cc commit a50be99

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

.github/workflows/lint.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Lint
1+
name: Build and Lint
22
on:
33
push:
44
branches:
@@ -38,7 +38,17 @@ jobs:
3838

3939
- name: Type check
4040
run: yarn tsc --noEmit
41+
build-library:
42+
runs-on: ubuntu-latest
43+
steps:
44+
- name: Checkout
45+
uses: actions/checkout@v4
46+
47+
- name: Setup
48+
uses: ./.github/actions/setup
4149

50+
- name: Build package
51+
run: yarn prepare
4252
lint:
4353
runs-on: ubuntu-latest
4454
steps:

0 commit comments

Comments
 (0)