Add fomantic ui

This commit is contained in:
Jay Trees
2022-01-13 14:00:31 +01:00
parent 94ee53ebca
commit 5d4e0022da
1537 changed files with 667268 additions and 0 deletions

21
node_modules/fomantic-ui/.github/workflows/ci.yml generated vendored Normal file
View File

@@ -0,0 +1,21 @@
name: CI
on: [pull_request]
jobs:
test:
name: Test build process on node ${{ matrix.node_version }}
runs-on: ubuntu-latest
strategy:
matrix:
node_version: [8, 10, 11, 12, 13, 14]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: pre-install
run: sh ./scripts/preinstall.sh
- name: install dependencies
run: npm install --ignore-scripts
- name: pre fomantic install & gulp build
run: npx gulp install

32
node_modules/fomantic-ui/.github/workflows/nightly.yml generated vendored Normal file
View File

@@ -0,0 +1,32 @@
name: Nightly
on:
schedule:
- cron: 00 23 * * *
jobs:
publish:
name: Build nightly distribution
runs-on: ubuntu-latest
if: github.repository == 'fomantic/Fomantic-UI'
steps:
- uses: actions/checkout@v1
with:
ref: develop
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- name: pre-setup
run: sh ./scripts/preinstall.sh
- name: install dependencies
run: npm install --ignore-scripts
- name: update nightly version
run: node ./scripts/nightly-version.js
- name: fomantic install & build
run: npx gulp install
- name: publish to npm
run: |
npm config set //registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN
npm publish --tag nightly
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}
CI: true