File: tests.yaml

package info (click to toggle)
node-base62 2.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: javascript: 308; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 602 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name: tests
on: push
jobs:
    build:
        runs-on: ubuntu-latest
        strategy:
            matrix:
                architecture:
                - x64
                - ppc64le
                node-version:
                - 20.x
                - 18.x
                - 16.x
        name: ${{ matrix.node-version }} on ${{ matrix.architecture }}
        steps:
        - uses: actions/checkout@v2
        - uses: actions/setup-node@v2
          with:
              architecture: ${{ matrix.architecture }}
              node-version: ${{ matrix.node-version }}
        - run: npm install-test