diff --git a/.github/.DS_Store b/.github/.DS_Store new file mode 100644 index 0000000..1f2c43e Binary files /dev/null and b/.github/.DS_Store differ diff --git a/.github/workflows/.DS_Store b/.github/workflows/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/.github/workflows/.DS_Store differ diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml new file mode 100644 index 0000000..e772a1c --- /dev/null +++ b/.github/workflows/nodejs.yml @@ -0,0 +1,29 @@ +# 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: Node.js CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [10.x, 12.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: npm ci + - run: npm run build --if-present + - run: npm test diff --git a/Gemfile.lock b/Gemfile.lock index e2e609e..d43d4ef 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -6,7 +6,7 @@ GEM minitest (~> 5.1) thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) - addressable (2.7.0) + addressable (2.8.0) public_suffix (>= 2.0.2, < 5.0) coffee-script (2.4.1) coffee-script-source @@ -207,21 +207,23 @@ GEM rb-inotify (~> 0.9, >= 0.9.7) ruby_dep (~> 1.2) mercenary (0.3.6) - mini_portile2 (2.4.0) + mini_portile2 (2.5.1) minima (2.5.0) jekyll (~> 3.5) jekyll-feed (~> 0.9) jekyll-seo-tag (~> 2.1) minitest (5.13.0) multipart-post (2.1.1) - nokogiri (1.10.8) - mini_portile2 (~> 2.4.0) + nokogiri (1.11.5) + mini_portile2 (~> 2.5.0) + racc (~> 1.4) octokit (4.14.0) sawyer (~> 0.8.0, >= 0.5.3) parallel (1.19.0) pathutil (0.16.2) forwardable-extended (~> 2.6) public_suffix (3.1.1) + racc (1.5.2) rainbow (3.0.0) rb-fsevent (0.10.3) rb-inotify (0.10.0) diff --git a/node_modules/.DS_Store b/node_modules/.DS_Store new file mode 100644 index 0000000..8572bb6 Binary files /dev/null and b/node_modules/.DS_Store differ diff --git a/node_modules/reveal.js/.DS_Store b/node_modules/reveal.js/.DS_Store new file mode 100644 index 0000000..feb500a Binary files /dev/null and b/node_modules/reveal.js/.DS_Store differ