* run the core tests on windows * fix glob with windows path seperator * always use slash when slicing serviceClass matches ..and add comment explaining why we need to do this * strip line endings (+ any other whitspace) before base64 encoding Co-authored-by: repo-ranger[bot] <39074581+repo-ranger[bot]@users.noreply.github.com>
27 lines
444 B
YAML
27 lines
444 B
YAML
name: Main
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches-ignore:
|
|
- 'gh-pages'
|
|
|
|
jobs:
|
|
test-main:
|
|
strategy:
|
|
matrix:
|
|
os: ['ubuntu-latest', 'windows-latest']
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
node-version: 16
|
|
|
|
- name: Core tests
|
|
uses: ./.github/actions/core-tests
|