Skip to content

Commit

Permalink
Updating CI
Browse files Browse the repository at this point in the history
  • Loading branch information
iamhectorsosa committed Nov 20, 2023
1 parent e102941 commit d807565
Showing 1 changed file with 13 additions and 11 deletions.
24 changes: 13 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,37 @@
name: CI

on:
push:
branches: ["main"]
branches:
- "**"
pull_request:
types: [opened]

branches:
- "**"

jobs:
build:
name: Build
timeout-minutes: 15
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v3
with:
fetch-depth: 2

- uses: pnpm/[email protected]
with:
version: 8.6.11

- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'pnpm'
cache: "pnpm"

- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build
run: pnpm build

0 comments on commit d807565

Please sign in to comment.