A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://github.com/cycjimmy/vue-h5-audio-controls/commit/4e7457363a33edb2c5edc139dc18f78fe3bca04e below:

refactor build tasks and upgrade dependencies · cycjimmy/vue-h5-audio-controls@4e74573 · GitHub

File tree Expand file treeCollapse file tree 29 files changed

+17591

-5597

lines changed

Filter options

Expand file treeCollapse file tree 29 files changed

+17591

-5597

lines changed Original file line number Diff line number Diff line change

@@ -0,0 +1,3 @@

1 +

dist/*

2 +

coverage/*

3 +

.release/*

Original file line number Diff line number Diff line change

@@ -1,11 +1,9 @@

1 1

{

2 -

"extends": [

3 -

"rollup"

4 -

],

2 +

"root": true,

3 +

"extends": "airbnb-base",

5 4

"env": {

6 5

"browser": true,

7 -

"es6": true,

8 -

"node": true,

9 -

"jest": true

10 -

}

6 +

"node": true

7 +

},

8 +

"rules": {}

11 9

}

Original file line number Diff line number Diff line change

@@ -24,15 +24,15 @@ A clear and concise description of what you expected to happen.

24 24

If applicable, add screenshots to help explain your problem.

25 25 26 26

**Desktop (please complete the following information):**

27 -

- OS: [e.g. iOS]

28 -

- Browser [e.g. chrome, safari]

29 -

- Version [e.g. 22]

27 +

- OS: [e.g. iOS]

28 +

- Browser [e.g. chrome, safari]

29 +

- Version [e.g. 22]

30 30 31 31

**Smartphone (please complete the following information):**

32 -

- Device: [e.g. iPhone6]

33 -

- OS: [e.g. iOS8.1]

34 -

- Browser [e.g. stock browser, safari]

35 -

- Version [e.g. 22]

32 +

- Device: [e.g. iPhone6]

33 +

- OS: [e.g. iOS8.1]

34 +

- Browser [e.g. stock browser, safari]

35 +

- Version [e.g. 22]

36 36 37 37

**Online demo**

38 38

If applicable, provide an online demo to help explain your problem.

Original file line number Diff line number Diff line change

@@ -9,7 +9,7 @@

9 9

- [ ] test: Adding missing or correcting existing tests

10 10

- [ ] chore: Changes to the build process or auxiliary tools and libraries such as documentation generation

11 11 12 -

**Resolves**

12 +

**Resolves**

13 13

- Fixes #[Add issue number here.]

14 14 15 15

**Describe Changes**

Original file line number Diff line number Diff line change

@@ -0,0 +1,11 @@

1 +

version: 2

2 +

updates:

3 +

- package-ecosystem: github-actions

4 +

directory: /

5 +

schedule:

6 +

interval: daily

7 + 8 +

- package-ecosystem: npm

9 +

directory: /

10 +

schedule:

11 +

interval: daily

Original file line number Diff line number Diff line change

@@ -4,30 +4,32 @@ on:

4 4

push:

5 5

branches:

6 6

- master

7 +

- main

7 8 8 9

pull_request:

9 10

branches:

10 11

- master

12 +

- main

11 13 12 14

jobs:

13 15

coveralls:

14 16

name: coveralls

15 17

runs-on: ubuntu-latest

16 18

steps:

17 19

- name: Checkout

18 -

uses: actions/checkout@v1

20 +

uses: actions/checkout@v3

19 21 20 22

- name: Setup Node.js

21 -

uses: actions/setup-node@v1

23 +

uses: actions/setup-node@v3

22 24

with:

23 -

node-version: 12

25 +

node-version: '16'

24 26 25 27

- name: Install dependencies and make test-coverage

26 28

run: |

27 29

npm ci

28 30

npm run coveralls

29 31 30 32

- name: Coveralls GitHub Action

31 -

uses: coverallsapp/github-action@v1.0.1

33 +

uses: coverallsapp/github-action@1.1.3

32 34

with:

33 35

github-token: ${{ secrets.GITHUB_TOKEN }}

Original file line number Diff line number Diff line change

@@ -4,23 +4,27 @@ on:

4 4

push:

5 5

branches:

6 6

- master

7 +

- main

7 8

jobs:

8 -

deploy-gh-pages:

9 +

deploy:

9 10

runs-on: ubuntu-latest

10 11

steps:

11 12

- name: Checkout

12 -

uses: actions/checkout@v2

13 +

uses: actions/checkout@v3

14 + 15 +

- name: Setup Node.js

16 +

uses: actions/setup-node@v3

13 17

with:

14 -

persist-credentials: false

18 +

node-version: '16'

15 19 16 20

- name: Pre-built

17 21

run: |

18 22

npm ci

19 23

npm run build:deployment

20 24 21 25

- name: Deploy to GitHub Pages

22 -

uses: JamesIves/github-pages-deploy-action@releases/v3

26 +

uses: JamesIves/github-pages-deploy-action@releases/v4

23 27

with:

24 -

ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}

25 -

BRANCH: gh-pages

26 -

FOLDER: .publish

28 +

branch: gh-pages

29 +

folder: .publish

30 +

token: ${{ secrets.ACCESS_TOKEN }}

Original file line number Diff line number Diff line change

@@ -5,6 +5,11 @@ on:

5 5

pull_request:

6 6

branches:

7 7

- master

8 +

- main

9 +

- next

10 +

- next-major

11 +

- alpha

12 +

- beta

8 13 9 14

schedule:

10 15

- cron: 0 2 * * 0

@@ -14,15 +19,41 @@ jobs:

14 19

runs-on: ${{ matrix.os }}

15 20

strategy:

16 21

matrix:

17 -

node-version: [12.x, 14.x]

22 +

node: [ '16' ]

18 23

os: [ubuntu-latest, windows-latest, macOS-latest]

19 24 20 25

steps:

21 -

- uses: actions/checkout@v1

22 -

- uses: actions/setup-node@v1

26 +

- uses: actions/checkout@v3

27 +

- uses: actions/setup-node@v3

23 28

with:

24 -

node-version: ${{ matrix.node-version }}

29 +

node-version: ${{ matrix.node }}

25 30

- run: npm ci

26 -

- run: npm run build

27 31

- run: npm test

32 +

- run: npm run package

28 33 34 +

- name: Semantic Release Test

35 +

uses: cycjimmy/semantic-release-action@v3

36 +

with:

37 +

dry_run: true

38 +

branches: |

39 +

[

40 +

'master',

41 +

'main',

42 +

'next',

43 +

'next-major',

44 +

{

45 +

name: 'beta',

46 +

prerelease: true

47 +

},

48 +

{

49 +

name: 'alpha',

50 +

prerelease: true

51 +

}

52 +

]

53 +

extra_plugins: |

54 +

@semantic-release/git

55 +

@semantic-release/changelog

56 +

@semantic-release/exec

57 +

env:

58 +

GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

59 +

NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

Original file line number Diff line number Diff line change

@@ -57,5 +57,7 @@ node_modules/

57 57

.publish/

58 58

dist/

59 59

temp/

60 -

coverage

60 +

coverage/

61 +

.release/

62 + 61 63

You can’t perform that action at this time.


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4