【发布时间】:2021-02-01 09:06:47
【问题描述】:
我正在为 .NET 项目制作 JavaScript API。所以我需要 GitHub 操作来安装 Node.JS 和 .NET Core(2.1、2.2、3.0 或 3.1)。这可能吗?
这是我的 GitHub 操作配置 YAML 文件:
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Node.js CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm test
【问题讨论】:
标签: javascript c# .net github-actions