Merge pull request #1900 from hackmdio/chore/dev-1888-upgrade-linter #465
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: 'Test and Build' | |
| on: | |
| push: | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| test-and-build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [14.x, 16.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # from https://stackoverflow.com/a/69649733 | |
| - name: Reconfigure git to use HTTP authentication | |
| run: > | |
| git config --global url."https://github.com/".insteadOf | |
| ssh://git@github.com/ | |
| - uses: actions/cache@v4 | |
| with: | |
| path: ~/.npm | |
| key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} | |
| restore-keys: | | |
| ${{ runner.os }}-node- | |
| - uses: actions/setup-node@v4 | |
| name: Use Node.js ${{ matrix.node-version }} | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| check-latest: true | |
| - run: npm ci | |
| - run: npm run test:ci | |
| - run: npm run build | |
| doctoc: | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/master' || github.event.pull_request | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| name: Use Node.js 14 | |
| with: | |
| node-version: 14 | |
| check-latest: true | |
| - name: Install doctoc-check | |
| run: | | |
| npm install -g doctoc | |
| cp README.md README.md.orig | |
| npm run doctoc | |
| diff -q README.md README.md.orig |