Skip to content

Commit

Permalink
Update dependencies (#43)
Browse files Browse the repository at this point in the history
* Update dependencies

* Update build workflow
  • Loading branch information
scriptex authored May 25, 2021
1 parent 01bdf75 commit e787622
Show file tree
Hide file tree
Showing 5 changed files with 244 additions and 195 deletions.
35 changes: 14 additions & 21 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,19 @@

name: Build

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

jobs:
build:

runs-on: ubuntu-latest

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@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn
- run: yarn build
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ ehthumbs.db
Thumbs.db

# Build
/dist
/dist
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ npm run build

## Details

1. Folder structure:
### Folder structure:

- `.config/` - configuration files. Currently contains the configuration file for [Browsersync](https://browsersync.io/)
- `assets/` - all images
- `.config/` - configuration files. Currently contains the configuration file for [Browsersync](https://browsersync.io/)
- `assets/` - all images

## LICENSE

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"dependencies": {},
"devDependencies": {
"browser-sync": "2.26.14",
"concurrently": "6.1.0",
"concurrently": "6.2.0",
"mjml": "4.9.3",
"yargs": "17.0.1"
},
Expand Down
Loading

0 comments on commit e787622

Please sign in to comment.