[Snyk] Security upgrade @pnp/cli-microsoft365 from 3.7.0-beta.b01397d to 7.0.0 #97
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: Does it build? | |
on: | |
workflow_dispatch: | |
inputs: | |
name: | |
description: 'Why are you triggering me?' | |
required: false | |
default: 'Test run' | |
pull_request: | |
branches: | |
- main | |
- dev | |
jobs: | |
build: | |
name: Build on Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: 14 | |
registry-url: https://registry.npmjs.org/ | |
- run: npm i | |
- run: npm start |