Skip to content

feat(product): updates to X/Twitter #708

feat(product): updates to X/Twitter

feat(product): updates to X/Twitter #708

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- uses: actions/setup-node@v1
with:
node-version: '12'
- run: npm install
- run: echo "::add-matcher::.github/problem_matcher.json"
- run: npm test
env:
TEST_ENVIRONMENT: github