Skip to content

🚨 [security] Update probot 12.3.0 → 13.3.10 (major) #152

🚨 [security] Update probot 12.3.0 → 13.3.10 (major)

🚨 [security] Update probot 12.3.0 → 13.3.10 (major) #152

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, 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
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16.x'
cache: 'yarn'
- run: cp .env.example .env
- run: yarn install --frozen-lockfile
- run: yarn test