Update to Unicode v17.0.0 (#109) #212
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: run-checks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # Include all major maintenance + active LTS + current Node.js versions. | |
| # https://github.com/nodejs/Release#release-schedule | |
| node: [20, 22, 24] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js 24 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Build | |
| run: npm run build | |
| - name: Set up Node.js ${{ matrix.node }} | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Test | |
| run: npm test | |
| node-6-compat: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node.js 6 | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 6 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Install mocha 6 | |
| run: npm install mocha@6 -D --save | |
| - name: Test | |
| run: npm run test-node6 |