Swap tabs for spaces

master
Raymonzut 5 years ago
parent 53a92deef2
commit 53ae300100
No known key found for this signature in database
GPG Key ID: 1E9BCC39EDD1DD53
  1. 40
      .github/workflows/nodejs.yml

@ -1,28 +1,28 @@
name: Node.js CI name: Node.js CI
on: on:
push: push:
branches: [ master, beta ] branches: [ master, beta ]
pull_request: pull_request:
branches: [ master ] branches: [ master ]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [10.x, 12.x, 13.x] node-version: [10.x, 12.x, 13.x]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm ci - run: npm ci
- run: npm run build --if-present - run: npm run build --if-present
- run: npm test - run: npm test
env: env:
CI: true CI: true

Loading…
Cancel
Save