docs: update md files

This commit is contained in:
Łukasz Holeczek
2021-08-29 15:55:06 +02:00
parent 374ea047ba
commit 1b7a092079
10 changed files with 219 additions and 158 deletions
-49
View File
@@ -1,49 +0,0 @@
name: Daily project check
on:
schedule:
# build runs every weekday at 5AM UTC
- cron: '0 5 * * 1-5'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: project check
run: |
npm i
npm run clearCache
npm run build
npm run lint
npm run test:unit
env:
CI: true
# e2e-chrome:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js 14
# uses: actions/setup-node@v1
# with:
# node-version: 14
# - name: e2e chrome test
# run: |
# npm i
# npm run test:e2e
# env:
# BROWSER: chrome
-52
View File
@@ -1,52 +0,0 @@
name: Project check
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: project check
run: |
npm i
npm run clearCache
npm run build
npm run lint
npm run test:unit
env:
CI: true
# e2e-chrome:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v1
# - name: Use Node.js 14
# uses: actions/setup-node@v1
# with:
# node-version: 14
# - name: e2e chrome test
# run: |
# npm i
# npm run test:e2e
# env:
# BROWSER: chrome