chore(deps-dev): bump @sapphire/utilities to v3.15.1 #1468
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: | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
testing: | |
name: Testing | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install node.js v20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: yarn | |
registry-url: https://registry.yarnpkg.org/ | |
- name: Install dependencies | |
run: yarn --immutable | |
- name: Build packages (PR) | |
if: ${{ github.event_name != 'push' }} | |
run: yarn turbo run build --filter="...[origin/${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || 'main' }}]" --concurrency=3 | |
- name: Build packages (Push) | |
if: ${{ github.event_name == 'push' }} | |
run: yarn turbo run build --filter="...[HEAD^1]" --concurrency=3 | |
- name: ESLint (PR) | |
if: ${{ github.event_name != 'push' }} | |
run: yarn turbo run lint --filter="...[origin/${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || 'main' }}]" --concurrency=3 | |
- name: ESLint (Push) | |
if: ${{ github.event_name == 'push' }} | |
run: yarn turbo run lint --filter="...[HEAD^1]" --concurrency=3 | |
- name: Tests (PR) | |
if: ${{ github.event_name != 'push' }} | |
run: | | |
curl -s -L ${{ secrets.ENV_FILE }} -o .env | |
yarn turbo run test --filter="...[origin/${{ github.event_name == 'pull_request' && github.event.pull_request.base.ref || 'main' }}]" --concurrency=3 | |
- name: Tests (Push) | |
if: ${{ github.event_name == 'push' }} | |
run: | | |
curl -s -L ${{ secrets.ENV_FILE }} -o .env | |
yarn turbo run test --filter="...[HEAD^1]" --concurrency=3 |