File: continuous-integration.yml

package info (click to toggle)
coffeescript 2.7.0%2Bdfsg1-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,368 kB
  • sloc: makefile: 20; xml: 9; javascript: 5; sh: 1
file content (44 lines) | stat: -rw-r--r-- 1,405 bytes parent folder | download | duplicates (3)
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
43
44
# Based on https://github.com/actions/starter-workflows/blob/master/ci/node.js.yml

name: Build and Test

on: [push, pull_request]

jobs:
  ci:
    runs-on: ${{ matrix.operating-system }}

    strategy:
      matrix:
        operating-system: [ubuntu-latest, macos-latest, windows-latest]
        node-version: [12.x, 14.x, 16.x, 17.x]

    steps:
    - uses: actions/checkout@v3
    - name: Use Node.js ${{ matrix.node-version }}
      uses: actions/setup-node@v3
      with:
        node-version: ${{ matrix.node-version }}
        cache: 'npm'

    - run: npm ci

    # Ensure that we can still build in the current version of Node
    - run: node ./bin/cake build:except-parser
    - run: node ./bin/cake build:parser
    # Build twice to ensure that the latest build of the compiler can still build itself
    - run: node ./bin/cake build:except-parser
    - run: node ./bin/cake build:parser
    # Build the browser compiler for the headless browser test
    - run: node ./bin/cake build:browser
    # Build test.html, so that test:browser uses the latest tests
    - run: node ./bin/cake doc:test

    # Check that the git diff is clean, to ensure that the updated build output was committed
    - run: git diff --exit-code

    # Test
    - run: node ./bin/cake test
    - run: node ./bin/cake test:browser
    - run: node ./bin/cake test:browser:node
    - run: node ./bin/cake test:integrations