This repository has been archived by the owner on Nov 2, 2024. It is now read-only.
Bump the npm_and_yarn group with 4 updates #306
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Continuous Integration" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
name: "Main CI (TS, Lint, Tests)" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install yarn | |
run: corepack enable yarn | |
- name: Setup node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'current' | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Turbo cache | |
id: turbo-cache | |
uses: actions/cache@v4 | |
with: | |
path: .turbo | |
key: turbo-${{ github.ref_name }}-${{ github.sha }} | |
restore-keys: | | |
turbo-${{ github.ref_name }}- | |
turbo-${{ github.job }}- | |
- name: Add custom Problem Matchers | |
run: | | |
echo ::add-matcher::.github/problem-matchers/tsc.json | |
echo ::add-matcher::.github/problem-matchers/eslint-compact.json | |
echo ::add-matcher::.github/problem-matchers/eslint-stylish.json | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Run Build | |
run: yarn turbo run build:ci --cache-dir=".turbo" | |
- name: Run ESLint | |
run: yarn turbo run lint --cache-dir=".turbo" | |
- name: Run Tests | |
run: yarn turbo run test --cache-dir=".turbo" | |
npm-publish: | |
needs: [main] | |
if: ${{ github.repository_owner == 'RiskyMH' && github.ref == 'refs/heads/main' }} | |
name: NPM Publish | |
permissions: | |
id-token: write | |
contents: read | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- package: '@riskybot/tools' | |
folder: 'tools' | |
- package: '@riskybot/error' | |
folder: 'command' | |
- package: '@riskybot/command' | |
folder: 'command' | |
- package: '@riskybot/apis' | |
folder: 'apis' | |
- package: '@riskybot/image-generate' | |
folder: 'image-generation' | |
- package: 'discord-api-parser' | |
folder: 'discord-api-parser' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install yarn | |
run: corepack enable yarn | |
- name: Install node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'current' | |
registry-url: https://registry.npmjs.org/ | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Turbo cache | |
id: turbo-cache | |
uses: actions/cache@v4 | |
with: | |
path: .turbo | |
key: turbo-${{ github.ref_name }}-${{ github.sha }} | |
restore-keys: | | |
turbo-${{ github.ref_name }}- | |
# Should be fast as this is requiring the ts build to succeed (and thus having cache) | |
- name: Run Build | |
run: yarn turbo run build:ci --cache-dir=".turbo" | |
- name: Delete contents in dist/ | |
run: rm -rf packages/${{ matrix.folder }}/dist/* | |
- name: Publish package | |
run: yarn workspace ${{ matrix.package }} npm publish --tolerate-republish || yarn workspace ${{ matrix.package }} npm publish | |
env: | |
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} | |
NPM_CONFIG_PROVENANCE: true | |
deploy-commands: | |
needs: [main] | |
if: ${{ github.repository_owner == 'RiskyMH' && github.ref == 'refs/heads/main' }} | |
name: Deploy Commands | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install yarn | |
run: corepack enable yarn | |
- name: Install node.js v16 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'current' | |
registry-url: https://registry.npmjs.org/ | |
cache: 'yarn' | |
cache-dependency-path: yarn.lock | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Turbo cache | |
id: turbo-cache | |
uses: actions/cache@v4 | |
with: | |
path: .turbo | |
key: turbo-${{ github.ref_name }}-${{ github.sha }} | |
restore-keys: turbo${{ github.ref_name }}- | |
# Should be fast as this is requiring the ts build to succeed (and thus having cache) | |
- name: Run Build | |
run: yarn turbo run build:ci --cache-dir=".turbo" | |
- name: Deploy | |
run: yarn deploy-commands | |
env: | |
RISKYBOT_APPLICATION_CLIENT_SECRET: ${{ secrets.RISKYBOT_APPLICATION_CLIENT_SECRET }} | |
RISKYBOT_APPLICATION_ID: ${{ secrets.RISKYBOT_APPLICATION_ID }} | |
IMGEN_APPLICATION_CLIENT_SECRET: ${{ secrets.IMGEN_APPLICATION_CLIENT_SECRET }} | |
IMGEN_APPLICATION_ID: ${{ secrets.IMGEN_APPLICATION_ID }} | |
OWNER_GUILD_ID: ${{ secrets.OWNER_GUILD_ID }} | |
TOPGG_TOKEN: 'true' | |
RISKYBOT_APPLICATION_PUBLIC_KEY: 'true' | |
IMGEN_APPLICATION_PUBLIC_KEY: 'true' | |