update dependencies; clean up README instructions #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Use Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '12.x' | |
- name: Install npm dependencies | |
run: npm install | |
- name: Install bower dependencies | |
run: | | |
npm install -g bower | |
bower install | |
- name: build | |
run: grunt build | |
- name: upload dist/ folder as artifact | |
uses: actions/upload-artifact@v1 | |
with: | |
name: aiida-explorer | |
path: dist/ | |
# test: | |
# | |
# runs-on: ubuntu-18.04 | |
# timeout-minutes: 5 | |
# | |
# steps: | |
# - uses: actions/checkout@v2 | |
# - name: Use Node.js | |
# uses: actions/setup-node@v1 | |
# with: | |
# node-version: '12.x' | |
# - name: Install npm dependencies | |
# run: npm install | |
# | |
# - name: Install bower dependencies | |
# run: | | |
# npm install -g bower | |
# bower install | |
# | |
# - name: build | |
# run: grunt test |