Skip to content

Commit

Permalink
Revert all changes
Browse files Browse the repository at this point in the history
  • Loading branch information
scriptex committed Feb 12, 2021
1 parent b51f249 commit 006da14
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 60 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -188,4 +188,4 @@ Procfile text

## EXECUTABLES
*.exe binary
*.pyc binary
*.pyc binary
45 changes: 22 additions & 23 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Build

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
build:
runs-on: ubuntu-latest

runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
# - run: yarn lint
# - run: yarn pwa
# - run: yarn optisize
# - run: yarn prod
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn
# - run: yarn lint
# - run: yarn pwa
# - run: yarn optisize
# - run: yarn prod
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
language: node_js
sudo: false
node_js:
- 'lts/*'
- 'lts/*'
install:
- yarn
- yarn
script:
- echo "Add your scripts"
- yarn test
33 changes: 0 additions & 33 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,36 +3,3 @@
All notable changes to this project will be documented in this file. Dates are displayed in UTC.

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [1.0.4](https://github.com/scriptex/initial-commit/compare/1.0.3...1.0.4)

> 12 February 2021
- Release 1.0.3 [`49b9822`](https://github.com/scriptex/initial-commit/commit/49b9822bd1ec0f07680b75e28b4ec6b13a7eb791)
- Release 1.0.4 [`6b880dc`](https://github.com/scriptex/initial-commit/commit/6b880dc7164e4b92867288315168985575f7b178)

#### [1.0.3](https://github.com/scriptex/initial-commit/compare/1.0.2...1.0.3)

> 12 February 2021
- Release 1.0.3 [`dfcaf1e`](https://github.com/scriptex/initial-commit/commit/dfcaf1e4055b3d1e0a566a41b33ae008b0800f46)
- WIP [`438c563`](https://github.com/scriptex/initial-commit/commit/438c563bd05efa4fda98f4f2dafb00109b407037)

#### [1.0.2](https://github.com/scriptex/initial-commit/compare/1.0.1...1.0.2)

> 12 February 2021
- WIP [`4a3a14f`](https://github.com/scriptex/initial-commit/commit/4a3a14ff09594f3d4d16d2edbdaa295531321091)
- Release 1.0.2 [`5e232d5`](https://github.com/scriptex/initial-commit/commit/5e232d5b6439c7667eabe0977a0df11a4c7b36ba)

#### 1.0.1

> 12 February 2021
- Update README.md [`#4`](https://github.com/scriptex/initial-commit/pull/4)
- Create FUNDING.yml [`#3`](https://github.com/scriptex/initial-commit/pull/3)
- Update renovate.json [`#2`](https://github.com/scriptex/initial-commit/pull/2)
- Configure Renovate [`#1`](https://github.com/scriptex/initial-commit/pull/1)
- Configure release-it [`ed6adda`](https://github.com/scriptex/initial-commit/commit/ed6addafeb57e96d95021cbc4674cfe6d801b85b)
- Initial commit (Pun intended) [`bd0231e`](https://github.com/scriptex/initial-commit/commit/bd0231e7b62e9396cca14af9f65281c6fb533a6c)
- Create build.yml [`362577f`](https://github.com/scriptex/initial-commit/commit/362577f2b763c9640e880b3135d5167faeecfe4b)
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"version": "1.0.4",
"description": "Starting template for repository",
"scripts": {
"test": "echo 'No tests found'",
"release-minor": "release-it minor --ci",
"release-patch": "release-it patch --ci",
"release-major": "release-it major --ci",
Expand Down

0 comments on commit 006da14

Please sign in to comment.