perf: up deps #14
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: | |
build: | |
name: build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Fetch deps | |
run: yarn | |
- name: Build target | |
run: yarn build | |
test_push: | |
needs: build | |
if: github.event_name == 'push' | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Yarn install | |
run: | | |
sudo apt-get install -y moreutils | |
yarn | |
- name: Unit tests | |
run: yarn test | |
- name: Update coverage | |
if: github.ref == 'refs/heads/master' | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifact-${{ github.run_id }} | |
retention-days: 1 | |
path: | | |
coverage | |
.nyc_output | |
test_pr: | |
if: github.event_name == 'pull_request' | |
needs: build | |
strategy: | |
matrix: | |
os: [ ubuntu-20.04 ] | |
node-version: [ 14, 18 ] | |
name: Test (Node v${{ matrix.node-version }}, OS ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: yarn | |
- name: Test only | |
if: matrix.node-version != '18' || matrix.os != 'ubuntu-20.04' | |
run: yarn test | |
- name: Test & push coverage | |
if: matrix.node-version == '18' && matrix.os == 'ubuntu-20.04' | |
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-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
persist-credentials: false | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
# - name: Codeclimate | |
# uses: paambaati/[email protected] | |
# env: | |
# CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }} | |
# with: | |
# coverageLocations: | | |
# ${{github.workspace}}/coverage/lcov.info:lcov | |
- name: Release | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GIT_COMMITTER_EMAIL: '[email protected]' | |
GIT_COMMITTER_NAME: 'qiwibot' | |
run: npm_config_yes=true npx zx-semrel |