Skip to content

Commit

Permalink
Add special features
Browse files Browse the repository at this point in the history
  • Loading branch information
TyMick committed May 27, 2022
1 parent 33b2560 commit 1fb4845
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
name: Run tests

on:
- pull_request
- push
pull_request:
branches:
- master
paths-ignore:
- "*.md"
- "catalog/**"
push:
branches:
- master
paths-ignore:
- "*.md"
- "catalog/**"

jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}

strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node_version:
- 12
- 14
- 16

name: with Node.js v${{ matrix.node_version }} on ${{ matrix.os }}

steps:
- run: echo "This job was triggered by a ${{ github.event_name }} event."
Expand All @@ -15,6 +38,6 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 12
node-version: ${{ matrix.node_version }}
- run: yarn install --frozen-lockfile
- run: yarn test

0 comments on commit 1fb4845

Please sign in to comment.