Skip to content

build(content-placeholder): publish new version of package #150

build(content-placeholder): publish new version of package

build(content-placeholder): publish new version of package #150

Workflow file for this run

name: "(¬‿¬)"
on:
pull_request:
types: [labeled]
jobs:
tests:
name: Tests
runs-on: [self-hosted]
concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
if: ${{ github.event.label.name == 'review' }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: CommitLint
run: |
cd .github
./commit-check.sh ${{ github.event.pull_request.base.sha }}
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install Dependencies
env:
CACHE_HTTP_API: "http://cache-http"
KEY: "node18-${{ hashFiles('package-lock.json') }}"
run: |
cd .github
./cache.sh $CACHE_HTTP_API $KEY
- name: Lint
run: npm run lint
- name: Typescript
run: npm run tsc
- name: Prettier Check
run: npm run prettier:check