Ensure that type of base64 is not a Number #50
This file contains hidden or 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: CI | |
| on: [pull_request, push] | |
| env: | |
| CI: true | |
| jobs: | |
| test: | |
| name: Tests for Node ${{ matrix.node }} on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: ["4", "6", "8", "10", "12", "14", "16", "18"] | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v3 | |
| - name: Set Node.js version | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - run: node --version | |
| - run: npm --version | |
| - name: Install npm dependencies | |
| run: npm install | |
| - name: Run tests | |
| run: npm test |