Skip to content

Commit

Permalink
Create test.yml
Browse files Browse the repository at this point in the history
Approved as per conversation with @BaderBC
  • Loading branch information
maxidragon authored Dec 21, 2023
1 parent 0f81754 commit 8b4589c
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Test
on:
pull_request:
push:
branches: ["main"]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn
- name: Build
run: yarn prepublish
- name: Run typecheck
run: yarn type-check

0 comments on commit 8b4589c

Please sign in to comment.