forked from APIDevTools/swagger-parser
-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (36 loc) · 916 Bytes
/
ci.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
40
41
42
name: CI
on:
push:
branches:
- main
pull_request:
jobs:
node_tests:
name: Node ${{ matrix.node }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
fail-fast: true
matrix:
os:
- ubuntu-latest
- windows-latest
node:
- 18
- 20
steps:
- name: Checkout source
uses: actions/checkout@v4
- name: Install Node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run lint
- name: Run tests
run: npm run test --ignore-scripts
env:
# `chalk` has troubles with color detection while on CI and also in how it's used within our tests.
# https://github.com/chalk/supports-color/issues/106
FORCE_COLOR: 1