Skip to content

Bump tar and serverless #39

Bump tar and serverless

Bump tar and serverless #39

Workflow file for this run

name: Web Service Check
on:
push:
branches: [master]
paths:
- 'tagbot/web/**'
- 'serverless.yml'
- 'package.json'
- 'package-lock.json'
- 'requirements.txt'
- '.github/workflows/web.yml'
pull_request:
paths:
- 'tagbot/web/**'
- 'serverless.yml'
- 'package.json'
- 'package-lock.json'
- 'requirements.txt'
- '.github/workflows/web.yml'
jobs:
check:
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- uses: actions/setup-python@v5
with:
python-version: '3.11'
- run: npm ci
- run: pip install -r requirements.txt
- name: Validate serverless config
run: npx serverless package --stage dev
env:
GITHUB_TOKEN: dummy