Skip to content

chore: add .yml to supported extensions #28

chore: add .yml to supported extensions

chore: add .yml to supported extensions #28

Workflow file for this run

name: Pull request
on:
pull_request:
branches:
- main
- next
- alpha
- canary
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: ^7.3.0
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build