chore(deps-dev): bump prettier from 3.2.5 to 3.3.0 #408
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
# This is a Github Workflow that runs tests on any push or pull request. | |
# If the tests pass and this is a push to the master branch it also runs Semantic Release. | |
name: CI | |
on: [push, pull_request] | |
jobs: | |
test_push: | |
if: github.event_name == 'push' | |
name: Test on push | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install deps | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Run tests | |
run: yarn test:cov | |
- name: Load Bun | |
run: node target/main/index.js | |
- name: Check Bun | |
run: bun -v | |
- name: Codeclimate | |
uses: paambaati/codeclimate-action@v3.2.0 | |
if: github.ref == 'refs/heads/master' | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageLocations: | | |
${{github.workspace}}/coverage/lcov.info:lcov | |
test_pr: | |
if: github.event_name == 'pull_request' | |
name: Test PR (${{ matrix.os }}) | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04, macos-latest ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install deps | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Run tests | |
if: ${{ matrix.os == 'ubuntu-22.04' }} | |
run: yarn test | |
- name: Load Bun | |
run: node target/main/index.js | |
- name: Check Bun | |
run: bun -v | |
release: | |
name: Release | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
needs: test_push | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: master | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install deps | |
run: yarn install | |
- name: Build | |
run: yarn build | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GIT_COMMITTER_EMAIL: 'antongolub@antongolub.com' | |
GIT_COMMITTER_NAME: 'Anton Golub' | |
GH_USER: 'antongolub' | |
PUSH_MAJOR_TAG: true | |
run: npm_config_yes=true npx zx-semrel |