Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

chore(deps): bump yaml from 2.2.1 to 2.2.2 #495

chore(deps): bump yaml from 2.2.1 to 2.2.2

chore(deps): bump yaml from 2.2.1 to 2.2.2 #495

Workflow file for this run

name: CI
on:
push:
branches: [ '**' ]
pull_request:
branches: [ main ]
jobs:
pre_job:
uses: jenssimon/gh-workflows/.github/workflows/skip-push-pr-duplicates.yml@v1.0.6
build:
needs: pre_job
if: ${{ needs.pre_job.outputs.needs_run_and_release == 'true' }}
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Test
run: |
yarn
yarn ci-test
release:
needs: [build]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'yarn'
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
yarn
npx semantic-release