当前,我要做的是在多个环境中运行Github Action,比如说在Windows和Linux上。我设法用travis ci做到了,但是我找不到有关如何使用Github Actions做到这一点的信息。
有人尝试过吗?
当前,这是我的nodejs.yml。
name: Node CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
npm ci
- name: prettier format check
run: |
npm run prettier-check
- name: lint format check
run: |
npm run lint-check
- name: build, and test
run: |
npm run build
npm test --if-present
env:
CI: true
所以答案实际上很简单。您创建两个名称不同的操作文件..就我而言:
nodejs-ubuntu.ymlnodejs-windows.yml
更改它们的名称并修改为所需的平台,例如,windows-lates / mac-latest或其他任何东西,一切都应按预期工作。