-
Notifications
You must be signed in to change notification settings - Fork 16
39 lines (30 loc) · 1.04 KB
/
ci-next.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
# This workflow will install dependencies, check for dependency version consistency, build all packages in the repo, and run tests
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: iTwin Viewer CI for next branch
on:
pull_request:
branches: [next]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: |
set -e
echo 'Installing...'
node common/scripts/install-run-rush.js install
echo 'Building...'
node common/scripts/install-run-rush.js rebuild
echo 'Linting...'
node common/scripts/install-run-rush.js lint
echo 'Testing...'
node common/scripts/install-run-rush.js test --verbose