Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
l3d00m authored Oct 6, 2023
1 parent 6876206 commit f9223d0
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: ci

on:
push:
pull_request:
merge_group:
workflow_dispatch:

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # v4
- uses: actions/setup-node@v3 # v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'

- name: Install dependencies 📦
run: yarn install --immutable
- name: Run typecheck
run: yarn run typecheck
- name: Run build
run: yarn run build

0 comments on commit f9223d0

Please sign in to comment.