Skip to content

Commit

Permalink
feat(release): added
Browse files Browse the repository at this point in the history
  • Loading branch information
leifermendez committed Dec 8, 2022
1 parent b115dc3 commit f4ad704
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Bot CI
name: Bot CI Test

on:
push:
Expand All @@ -23,7 +23,5 @@ jobs:
- run: corepack enable
- name: Install NPM Dependencies
run: yarn install --immutable --network-timeout 300000
- name: Build
run: yarn build
- name: Test
run: yarn test
26 changes: 26 additions & 0 deletions .github/workflows/relases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Bot Relases

on:
release:
types: [released]
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.x]

steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: corepack enable
- name: Install NPM Dependencies
run: yarn install --immutable --network-timeout 300000
- name: Test
run: yarn test
- name: Build
run: yarn build

0 comments on commit f4ad704

Please sign in to comment.