chore: add fflate link #397
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: | |
name: Test on push | |
if: ${{ github.event_name == 'push' }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Deps | |
run: npm i | |
- name: Run Node.js tests | |
run: npm run test | |
test_pr_bun: | |
if: ${{ github.event_name == 'pull_request' }} | |
runs-on: ubuntu-22.04 | |
name: Test PR with Bun | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Bun | |
uses: antongolub/action-setup-bun@v1 | |
- name: Deps | |
run: | | |
bun install | |
ln -s ../ ./node_modules/npm-registry-firewall | |
- name: Run tests | |
timeout-minutes: 2 | |
run: bun test:bun | |
test_pr_node: | |
if: ${{ github.event_name == 'pull_request' }} | |
name: Test PR Node.js v${{ matrix.node-version }}, OS ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-22.04, windows-2022 ] | |
node-version: [ 14, 20 ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Deps | |
run: npm i | |
# https://github.com/npm/cli/issues/4341#issuecomment-1040608101 | |
- if: matrix.os == 'windows-2022' && matrix.node-version == 14 | |
run: npm i -g npm@7 | |
- if: matrix.os == 'windows-2022' && matrix.node-version != 14 | |
run: npm i -g npm@latest | |
- name: Run tests | |
timeout-minutes: 2 | |
run: npm run 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 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Deps | |
run: npm i | |
- name: Run tests | |
run: npm run test:cov | |
- name: Docs | |
run: npm run 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: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GH_TOKEN: ${{ secrets.GH_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
GIT_AUTHOR_EMAIL: '[email protected]' | |
GIT_COMMITTER_EMAIL: '[email protected]' | |
GIT_AUTHOR_NAME: '@antongolub' | |
GIT_COMMITTER_NAME: '@antongolub' | |
run: npm_config_yes=true npx -p @qiwi/semrel-toolkit semrel |