mirror of
https://github.com/wishthis/wishthis.git
synced 2026-05-24 23:05:55 -04:00
Add fomantic ui
This commit is contained in:
21
node_modules/fomantic-ui/.github/workflows/ci.yml
generated
vendored
Normal file
21
node_modules/fomantic-ui/.github/workflows/ci.yml
generated
vendored
Normal 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
32
node_modules/fomantic-ui/.github/workflows/nightly.yml
generated
vendored
Normal 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
|
||||
Reference in New Issue
Block a user