fix: gzip files to xtransit prefix #521
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
name: Continuous integration | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
branches: [ '**' ] | |
jobs: | |
Runner: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ ubuntu-latest, macos-latest, windows-latest ] | |
node-version: [ 12, 14, 16, 18, 20, 22 ] | |
steps: | |
- name: Checkout Git Source | |
uses: actions/checkout@master | |
- name: Setup Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: npm install | |
- name: Continuous integration on win32 | |
run: npm run test | |
if: ${{ matrix.os == 'windows-latest' }} | |
- name: Continuous integration on linux & darwin | |
run: npm run ci | |
if: ${{ matrix.os != 'windows-latest' }} |