Skip to content

Commit

Permalink
ci: change ci name and trigger to all push (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
BlairCurrey authored Mar 7, 2024
1 parent 23abe6b commit 4ee978c
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
name: CI
name: Build and Test

on: [push]

on:
pull_request:
branches: [ master ]
jobs:
test:
name: Run Tests
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18.x"
- uses: pnpm/action-setup@v2
- run: pnpm install
- run: pnpm build
- run: pnpm test
node-version: '18.x'
- uses: pnpm/action-setup@v3
- name: Install Dependencies
run: pnpm install
- name: Build
run: pnpm build
- name: Test
run: pnpm test

0 comments on commit 4ee978c

Please sign in to comment.