Skip to content

Commit

Permalink
Update master.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelcolmenares committed Jun 8, 2024
1 parent 893daa3 commit e91c465
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,21 @@ on:

jobs:
test:
runs-on: ubuntu-latest

container:
image: microsoft/vscode-dev-containers:ubuntu
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v4

- name: Install dependencies
run: npm install

- name: Run tests
run: npm test
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run tests
uses: coactions/setup-xvfb@v1
with:
run: npm test

0 comments on commit e91c465

Please sign in to comment.