Skip to content

✨: add extension logo #18

✨: add extension logo

✨: add extension logo #18

Workflow file for this run

name: 'ci/github: grpc-web-devtools'
on:
pull_request:
workflow_dispatch:
jobs:
typecheck:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.10.0]
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v3
- name: 🔫 Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: 📦 Cache
uses: actions/cache@v2
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-devtools-${{ hashFiles('yarn.lock') }}
- name: 💿 Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: 🌀 Run typecheck
run: yarn tsc
lint:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.10.0]
steps:
- name: 🛎️ Checkout
uses: actions/checkout@v3
- name: 🔫 Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: 📦 Cache
uses: actions/cache@v2
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-devtools-${{ hashFiles('yarn.lock') }}
- name: 💿 Install dependencies
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: 💄 Run linter
run: yarn lint