fix(deps): update dependency zx-extra to v3.0.24 #325
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
# 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] | |
env: | |
YARN_ENABLE_IMMUTABLE_INSTALLS: false | |
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: 22 | |
- name: Install deps | |
run: yarn install | |
- name: Run tests | |
timeout-minutes: 2 | |
run: yarn test | |
- name: Push coverage | |
if: github.ref == 'refs/heads/master' | |
run: | | |
npx ggcp lcov.info https://${{ secrets.GH_TOKEN }}@github.com/${{ github.repository }}.git/coverage/${{ github.sha }} --cwd=${{ github.workspace }}/coverage --message='chore: push coverage' | |
test_pr: | |
if: github.event_name == 'pull_request' | |
name: Test PR (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04 ] | |
node-version: [ 18, 22 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install deps | |
run: yarn install | |
- name: Run tests | |
timeout-minutes: 2 | |
run: yarn test | |
release: | |
name: Release | |
# https://github.community/t/trigger-job-on-tag-push-only/18076 | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
needs: test_push | |
runs-on: ubuntu-22.04 | |
permissions: | |
checks: read | |
statuses: write | |
contents: write | |
packages: write | |
id-token: write | |
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: 22 | |
- name: Install deps | |
run: yarn install | |
- name: Run tests | |
timeout-minutes: 2 | |
run: yarn test | |
- name: Docs | |
run: yarn docs | |
- name: Codeclimate | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageLocations: | | |
${{github.workspace}}/coverage/*.lcov:lcov | |
- name: Release | |
env: | |
VERBOSE: ${{ secrets.VERBOSE }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
NPM_PROVENANCE: true | |
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | |
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | |
run: npm_config_yes=true npx zx-semrel |