Skip to content

Commit

Permalink
ci: add checks on push
Browse files Browse the repository at this point in the history
  • Loading branch information
osiastedian committed Dec 20, 2023
1 parent 59ab504 commit ecffb85
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI Checks

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

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: ["16.x", "18.x"]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Yarn
run: npm install -g yarn
- name: Yarn CI
run: yarn ci
- name: Yarn Build
run: yarn build

0 comments on commit ecffb85

Please sign in to comment.