Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #15 from Kovah/dev
Browse files Browse the repository at this point in the history
v3.0
  • Loading branch information
Kovah authored Jul 23, 2021
2 parents 7c38a3f + 2f119ec commit 80ebee3
Show file tree
Hide file tree
Showing 63 changed files with 3,818 additions and 2,953 deletions.
3 changes: 0 additions & 3 deletions .browserslistrc

This file was deleted.

4 changes: 0 additions & 4 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,3 @@ max_line_length = 120

[*.{md,markdown,txt}]
trim_trailing_whitespace = false

[*.php]
indent_size = 4
max_line_length = 120
85 changes: 85 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
name: Build Release

on:
push:
tags:
- '*'
branches:
- main

jobs:

build:
name: Build Taboo with absolute paths
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install modules
run: npm install

- name: Run tests
run: npm run build

- name: Create package
uses: thedoctor0/zip-release@master
with:
type: 'zip'
path: 'dist'
filename: 'taboo-build.zip'

- uses: actions/upload-artifact@v2
with:
name: build
path: taboo-build.zip


build-relative:
name: Build Taboo with relative paths
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install modules
run: npm install -g

- name: Run tests
run: npm run build
env:
APP_RELATIVE: true

- name: Create package
uses: thedoctor0/zip-release@master
with:
type: 'zip'
path: 'dist'
filename: 'taboo-build-relative.zip'

- uses: actions/upload-artifact@v2
with:
name: build-relative
path: taboo-build-relative.zip
1 change: 0 additions & 1 deletion .node-version

This file was deleted.

5 changes: 0 additions & 5 deletions .postcssrc.js

This file was deleted.

4 changes: 2 additions & 2 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
presets: [
'@vue/app'
'@vue/cli-plugin-babel/preset'
]
};
}
Loading

0 comments on commit 80ebee3

Please sign in to comment.