-
Notifications
You must be signed in to change notification settings - Fork 4
executable file
·42 lines (37 loc) · 1.1 KB
/
run_tests.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: Run tests
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop]
# Cancel job when new commit is pushed for the same build
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
# https://github.com/OSGeo/gdal/pull/5460
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node: [ 20 ]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
# We need package-lock.json to use cache this way
# cache: 'npm'
- name: Install dependencies
# With package-lock.json we should use "npm ci"
run: npm install
- name: Run tests
run: npm run test
- name: Generate docs metadata
run: npm run metadata
- name: Generate dummy docs metadata
run: npm run dummy_docs
- name: Run build
run: npm run build