This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
fix(deps): update dependency preact-render-to-string to v6 #200
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
workflow_dispatch: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
cache: yarn | |
cache-dependency-path: | | |
yarn.lock | |
node-version: 18 | |
- name: Install | |
run: | | |
yarn install --frozen-lockfile | |
- name: Lint | |
run: | | |
yarn lint |