Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lxsmnsyc committed Oct 19, 2023
1 parent dc3ec02 commit 2ef61b0
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI
on:
- push
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2.2.2
with:
version: 8
run_install: |
- args: [--frozen-lockfile]
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'pnpm'

- name: Clean
run: pnpm recursive run clean
env:
CI: true

- name: Build
run: pnpm recursive run build
env:
CI: true

- name: Begin Tests
run: pnpm recursive run test
env:
CI: true

0 comments on commit 2ef61b0

Please sign in to comment.