Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Commit

Permalink
Add missing OS to our CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vinistock committed Dec 5, 2023
1 parent 8b3254c commit 202a138
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,29 @@ name: CI
on: [push, pull_request]

jobs:
build:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: "18"
cache: "yarn"

- name: 📦 Install dependencies
run: yarn --frozen-lockfile

- name: Lint
run: yarn run lint

build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
Expand All @@ -24,8 +45,6 @@ jobs:
- name: 📦 Install dependencies
run: yarn --frozen-lockfile

- run: yarn run lint

- run: /usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
- run: yarn run test
env:
Expand Down

0 comments on commit 202a138

Please sign in to comment.