github actions matrix
-
Matrix 를 이용해 다양한 환경을 한번에 실행하기github actions 2022. 3. 7. 10:49
문제 workflow 를 ubuntu, window 에서 node 버전을 바꿔가면서 실행하고 싶다. 코드 name: Matrix on: push jobs: node-version: strategy: matrix: os: [ubuntu-latest, windows-latest] node_version: [8, 10, 12] exclude: - os: ubuntu-latest node_version: 10 fail-fast: true max-parallel: 1 runs-on: ${{ matrix.os }} steps: - name: Log node version run: node -v - uses: actions/setup-node@v1 with: node-version: ${{ matrix.node_ve..