Skip to content

Commit

Permalink
fix(ci): switch to pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Sep 30, 2022
1 parent bf514be commit dda5299
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 41 deletions.
66 changes: 31 additions & 35 deletions .github/workflows/coveralls.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,3 @@
#
# ___ _ ___ _
# | _ \__ _ _______ __ _____ _ _ __| | / __|___ _ _ ___ _ _ __ _| |_ ___ _ _
# | _/ _` (_-<_-< V V / _ \ '_/ _` | | (_ / -_) ' \/ -_) '_/ _` | _/ _ \ '_|
# |_| \__,_/__/__/\_/\_/\___/_| \__,_| \___\___|_||_\___|_| \__,_|\__\___/_|
#
# Password Generator
# https://password-generator.pro/
#
# Copyright (c) Sebastien Rousseau 2022. All rights reserved
# Licensed under the MIT license
#

name: "Coveralls"

on:
Expand All @@ -22,43 +9,52 @@ on:
- "*"

jobs:
job:
build:

runs-on: ubuntu-latest

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

steps:
- name: Checkout Repo
uses: actions/checkout@v2
- run: echo ${{github.ref}}

- uses: actions/checkout@v2

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

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
persist-credentials: false
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Setup Node.js 14.x
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Install yarn dependencies
# run: yarn --frozen-lockfile --ignore-scripts
run: |
yarn install
- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Run lint fix
run: |
yarn run lint:fix
- name: Lint fix
run: pnpm run lint:fix

- name: Run prettier
run: |
yarn run format
run: pnpm run format

- name: Run remark
run: |
yarn run lint:markdown
run: pnpm run lint:markdown

- name: Building
run: |
yarn run build
- name: Build
run: pnpm run build

- name: Testing & Coverage
run: |
yarn run test
run: pnpm run test

- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down
30 changes: 24 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Dotfiles Release
name: Release

on:
release:
Expand All @@ -15,7 +15,9 @@ jobs:

steps:
- run: echo ${{github.ref}}

- uses: actions/checkout@v2

- uses: pnpm/[email protected]
with:
version: 7
Expand All @@ -25,36 +27,52 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Lint fix
run: pnpm run lint:fix

- name: Run prettier
run: pnpm run format

- name: Run remark
run: pnpm run lint:markdown

- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Lint
run: pnpm lint
run: pnpm run build

- name: Testing & Coverage
run: pnpm run test

publish:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

- uses: pnpm/[email protected]
with:
version: 7
registry-url: "https://registry.npmjs.org"
scope: sebastienrousseau

- run: pnpm install --frozen-lockfile

- run: pnpm publish --access public --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Set package registry
run: pnpm config set registry https://npm.pkg.github.com

- name: Github package registry authentication
run: pnpm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}

- name: Npm registry authentication
run: pnpm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}

- name: Publish the package to Github and Npm package registries
run: pnpm -r publish --access public
env:
Expand Down

0 comments on commit dda5299

Please sign in to comment.