Files
reacord/.github/workflows/the.yml
2021-12-08 01:06:55 -06:00

22 lines
441 B
YAML

name: the
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
the:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
# https://github.com/actions/setup-node#supported-version-syntax
node-version: "lts/*"
- run: npm i -g pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm run ci