Skip to content

ignore lock files

ignore lock files #11

Workflow file for this run

name: ngrok-pull

Check failure on line 1 in .github/workflows/ngrok-pull.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/ngrok-pull.yaml

Invalid workflow file

you may only define one of `paths` and `paths-ignore` for a single event
on:
pull_request:
paths:
- ngrok/**
paths-ignore:
- ngrok/package-lock.json
jobs:
build-ngrok:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
sparse-checkout: ngrok
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Install winglang
run: npm i -g winglang
- name: Install dependencies
run: npm install --include=dev
working-directory: ngrok
- name: Test
run: wing test
working-directory: ngrok
- name: Pack
run: wing pack
working-directory: ngrok