Reduced uses of Buffer #46
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: main | |
on: push | |
jobs: | |
build: | |
strategy: | |
matrix: | |
config: | |
- runs-on: ubuntu-latest | |
node-version: '18.12.0' # LTS | |
- runs-on: ubuntu-latest | |
node-version: '18.18.0' # LTS (current) | |
CODE_CHECK: 1 | |
- runs-on: ubuntu-latest | |
node-version: '20.7.0' | |
runs-on: ${{ matrix.config.runs-on }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.config.node-version }} | |
- name: Dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Test CJS | |
run: npm run test:cjs | |
- name: Test ESM | |
run: npm run test:esm | |
- name: Lint | |
run: npm run lint | |
if: matrix.config.CODE_CHECK == 1 | |
- name: Formatted | |
run: npm run formatted | |
if: matrix.config.CODE_CHECK == 1 | |
publish: | |
if: startsWith(github.ref, 'refs/tags/') | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.18.0' | |
registry-url: https://registry.npmjs.org/ | |
- name: Dependencies | |
run: npm ci | |
- name: Publish | |
run: npm publish --access=public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }} |