Skip to content

test: improve action yaml handling tests #6

test: improve action yaml handling tests

test: improve action yaml handling tests #6

Workflow file for this run

name: Build
on:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: pnpm
- run: pnpm i
- name: types
if: ${{ always() }}
run: pnpm run build:types
- name: test
id: test
if: ${{ always() }}
run: pnpm run test
- name: lint
if: ${{ always() }}
run: pnpm run lint
- name: style
if: ${{ always() }}
run: pnpm run format:check