1
0
mirror of https://github.com/tabler/tabler.git synced 2025-12-22 01:44:25 +04:00

Create test.yml

This commit is contained in:
Paweł Kuna
2019-11-30 16:18:21 +01:00
committed by GitHub
parent c4472abf3b
commit bb9fed5348

25
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Tests
on: [push, pull_request]
jobs:
run:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: [10, 12]
steps:
- name: Clone repository
uses: actions/checkout@v1
- name: Set Node.js version
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: node --version
- run: npm --version
- run: java -version