Skip to content

Commit

Permalink
add ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanobartoletti committed Nov 2, 2023
1 parent f7d5ac1 commit e1b46a8
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: ci

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
ci:
runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]
node: [18]

steps:
- uses: DerYeger/yarn-setup-action@master
with:
node-version: ${{ matrix.node }}

- name: 📦 Install dependencies
run: yarn install

- name: 🚧 Set up project
run: yarn dev:prepare

- name: 🛠 Build project
run: yarn prepack

- name: ✅ Lint
run: yarn lint

# - name: 🧪 Test project
# run: yarn test

0 comments on commit e1b46a8

Please sign in to comment.