Skip to content

Bump ejs from 3.1.8 to 3.1.10 #808

Bump ejs from 3.1.8 to 3.1.10

Bump ejs from 3.1.8 to 3.1.10 #808

Workflow file for this run

name: Package Tests
on: push
jobs:
Notion-Post-Publisher:
name: "Notion Post Publisher"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- uses: actions/cache@v2
id: yarn-cache
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install
- name: Run tests
run: |
cd packages/notion-post-publisher
npm test
env:
TWITTER_BEARER_TOKEN: ${{ secrets.TWITTER_BEARER_TOKEN }}