-
Notifications
You must be signed in to change notification settings - Fork 193
39 lines (34 loc) · 1.19 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Build
on: [push]
jobs:
build:
name: Test on ${{ matrix.platform }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- kind: linux
os: ubuntu-latest
platform: linux
- kind: windows
os: windows-latest
platform: win
# Macos-11 is deprecated, macos-12 would require package updates, see PR #1409
# - kind: mac
# os: macos-11
# platform: osx
steps:
- uses: actions/checkout@v3
- name: Set up Node
uses: actions/setup-node@v3
with:
# The talk on the street says this might be a good version for building.
node-version: 19.2.0
cache: yarn
- name: Install Yarn dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: >
node test/folder-structure-testing/populator.mjs &&
yarn run test:unit:ci