Skip to content

Use blank zip as assets in CI #96

Use blank zip as assets in CI

Use blank zip as assets in CI #96

Workflow file for this run

name: web
on:
push:
branches: [main]
pull_request:
branches: [main]
defaults:
run:
working-directory: ./web
jobs:
lint:
name: Lint
runs-on: macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- uses: actions/setup-node@v3
with:
node-version: 18
cache: pnpm
cache-dependency-path: web/pnpm-lock.yaml
- name: Lint
run: pnpm run lint
env:
ESLINT_ARGS: "-f @jamesacarr/github-actions"