Twitter timeline - Content - Add working example with multiple timelines #13
Workflow file for this run
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: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [12.x, 14.x] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
ruby-version: 3.0 | |
- name: set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install puppeteer libraries | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libgbm1 | |
- run: gem install rake html-proofer | |
- run: npm i -g bower grunt-cli | |
- run: npm ci | |
# - run: grunt dist | |
- if: ${{ !env.ACT }} | |
run: grunt test | |
- run: grunt htmllint | |
- run: grunt bootlint | |
- run: npm test | |
- run: rake |