name: Node.js CI on: push: branches: [master] pull_request: branches: [master] jobs: build: runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: os: [macos-latest, windows-latest, ubuntu-latest] node-version: [10.x, 12.x, 14.x] steps: - run: git config --global core.autocrlf false - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v1 with: node-version: ${{ matrix.node-version }} - name: Build Application run: npm ci - name: Build package run: npm run dist