chore(deps): update dependency esbuild to ^0.20.0 #199
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] | |
jobs: | |
init: | |
name: init | |
runs-on: ubuntu-22.04 | |
outputs: | |
yarn-cache-dir: ${{ steps.yarn-cache-dir-path.outputs.dir }} | |
checksum: ${{ steps.checksum.outputs.checksum }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Get yarn cache dir | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
- name: Get src checksum | |
id: checksum | |
run: echo "::set-output name=checksum::${{ hashFiles('yarn.lock') }}-${{ hashFiles('src/**/*') }}-${{ hashFiles('*.json') }}" | |
build: | |
name: build | |
needs: init | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Download artifact | |
uses: qiwi-forks/action-download-artifact@v2 | |
with: | |
name: artifact-${{ needs.init.outputs.checksum }} | |
workflow: 'ci.yaml' | |
workflow_conclusion: false | |
nothrow: true | |
search_artifacts: true | |
search_depth: 10 | |
- name: Check artifact | |
if: always() | |
id: check-artifact | |
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)" | |
- uses: actions/cache@v3 | |
if: ${{ steps.check-artifact.outputs.exists == 'false' }} | |
id: yarn-cache | |
with: | |
path: ${{ needs.init.outputs.yarn-cache-dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install deps | |
if: ${{ steps.check-artifact.outputs.exists == 'false' }} | |
run: yarn | |
- name: Build | |
if: ${{ steps.check-artifact.outputs.exists == 'false' }} | |
run: | | |
yarn build | |
tar -cvf artifact.tar target package.json | |
- name: Save artifact | |
if: ${{ steps.check-artifact.outputs.exists == 'false' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifact-${{ needs.init.outputs.checksum }} | |
retention-days: 30 | |
path: artifact.tar | |
# https://github.com/actions/upload-artifact/issues/53 | |
- name: Cache artifact | |
uses: actions/cache@v3 | |
id: artifact | |
with: | |
path: artifact.tar | |
key: artifact-${{ needs.init.outputs.checksum }} | |
test_push: | |
needs: [build, init] | |
if: github.event_name == 'push' | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: ${{ needs.init.outputs.yarn-cache-dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Install deps | |
run: yarn | |
- run: npm link | |
- name: Restore artifact from cache (if exists) | |
uses: actions/cache@v3 | |
with: | |
path: artifact.tar | |
key: artifact-${{ needs.init.outputs.checksum }} | |
- name: Check artifact | |
if: always() | |
id: check-artifact | |
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)" | |
- name: Download artifact | |
if: ${{ steps.check-artifact.outputs.exists == 'false' }} | |
uses: qiwi-forks/action-download-artifact@v2 | |
with: | |
name: artifact-${{ needs.init.outputs.checksum }} | |
workflow: 'ci.yaml' | |
workflow_conclusion: false | |
search_artifacts: true | |
search_depth: 10 | |
- name: Unpack artifact | |
run: tar -xvf artifact.tar | |
- run: yarn build | |
- name: Test | |
# env: | |
# NODE_OPTIONS: "--max_old_space_size=4096" | |
run: yarn test | |
- name: Cache coverage | |
if: github.ref == 'refs/heads/master' | |
id: cache-coverage | |
uses: actions/cache@v3 | |
with: | |
path: | | |
target/coverage | |
package.json | |
key: coverage-${{ needs.init.outputs.checksum }} | |
test_pr: | |
if: github.event_name == 'pull_request' | |
needs: [build, init] | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04 ] | |
node-version: [ 18, 20 ] | |
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: ${{ needs.init.outputs.yarn-cache-dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Restore artifact from cache (if exists) | |
uses: actions/cache@v3 | |
with: | |
path: artifact.tar | |
key: artifact-${{ needs.init.outputs.checksum }} | |
- name: Check artifact | |
if: always() | |
id: check-artifact | |
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)" | |
- name: Download artifact | |
if: ${{ steps.check-artifact.outputs.exists == 'false' }} | |
uses: qiwi-forks/action-download-artifact@v2 | |
with: | |
name: artifact-${{ needs.init.outputs.checksum }} | |
workflow: 'ci.yaml' | |
workflow_conclusion: false | |
search_artifacts: true | |
search_depth: 10 | |
- name: Unpack artifact | |
run: tar -xvf artifact.tar | |
- name: Install deps | |
run: yarn | |
- run: yarn build | |
- name: Full test | |
if: matrix.node-version == '18' && matrix.os == 'ubuntu-22.04' | |
# env: | |
# NODE_OPTIONS: "--max_old_space_size=4096" | |
run: yarn test | |
release: | |
name: Release | |
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | |
needs: [test_push, init] | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
ref: master | |
- name: Restore artifact from cache (if exists) | |
uses: actions/cache@v3 | |
with: | |
path: artifact.tar | |
key: artifact-${{ needs.init.outputs.checksum }} | |
- name: Check artifact | |
if: always() | |
id: check-artifact | |
run: echo "::set-output name=exists::$([ -e "artifact.tar" ] && echo true || echo false)" | |
- name: Download artifact | |
if: ${{ steps.check-artifact.outputs.exists == 'false' }} | |
uses: qiwi-forks/action-download-artifact@v2 | |
with: | |
name: artifact-${{ needs.init.outputs.checksum }} | |
workflow: 'ci.yaml' | |
workflow_conclusion: false | |
search_artifacts: true | |
search_depth: 10 | |
- name: Restore coverage | |
uses: actions/cache@v3 | |
with: | |
path: | | |
target/coverage | |
package.json | |
key: coverage-${{ needs.init.outputs.checksum }} | |
- name: Unpack artifact | |
run: tar -xvf artifact.tar | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Codeclimate | |
uses: paambaati/[email protected] | |
env: | |
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
with: | |
coverageLocations: | | |
${{github.workspace}}/target/coverage/lcov.info:lcov | |
- uses: actions/cache@v3 | |
id: yarn-cache | |
with: | |
path: ${{ needs.init.outputs.yarn-cache-dir }} | |
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Semantic Release | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIT_AUTHOR_NAME: ${{ secrets.GIT_AUTHOR_NAME }} | |
GIT_AUTHOR_EMAIL: ${{ secrets.GIT_AUTHOR_EMAIL }} | |
GIT_COMMITTER_NAME: ${{ secrets.GIT_COMMITTER_NAME }} | |
GIT_COMMITTER_EMAIL: ${{ secrets.GIT_COMMITTER_EMAIL }} | |
run: npm_config_yes=true npx zx-semrel |