Skip to content

Commit

Permalink
ci: update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
smmoosavi committed May 17, 2024
1 parent 4ebef4c commit 73b517a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Node.js CI
name: CI

on: [push]

Expand All @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
Expand All @@ -22,4 +22,4 @@ jobs:
- run: pnpm run build
- run: pnpm run test
- run: git diff --exit-code --name-only
- uses: codecov/codecov-action@v2
- uses: codecov/codecov-action@v4
8 changes: 4 additions & 4 deletions .github/workflows/node-publish.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
name: Node.js Package
name: Publish
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![NPM version](https://badgen.net/npm/v/@forminator/react-wire)](https://npmjs.com/package/@forminator/react-wire)
[![NPM downloads](https://badgen.net/npm/dm/@forminator/react-wire)](https://npmjs.com/package/@forminator/react-wire)
[![Build Status](https://travis-ci.com/forminator/react-wire.svg?branch=master)](https://travis-ci.com/forminator/react-wire)
[![Build Status](https://github.com/forminator/react-wire/actions/workflows/node-ci.yml/badge.svg?branch=master)](https://github.com/forminator/react-wire/actions/workflows/node-ci.yml)
[![codecov](https://codecov.io/gh/forminator/react-wire/branch/master/graph/badge.svg)](https://codecov.io/gh/forminator/react-wire)

connect react components with wire
Expand Down

0 comments on commit 73b517a

Please sign in to comment.