docs: README: require -> import #10
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: Node CI | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| env: | |
| NAME: try-to-catch | |
| strategy: | |
| matrix: | |
| node-version: | |
| - 16.x | |
| - 18.x | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v2 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install | |
| run: npm i && npm i redrun -g | |
| - name: Lint | |
| run: redrun fix:lint | |
| - name: Commit fixes | |
| uses: EndBug/add-and-commit@v7 | |
| with: | |
| message: chore(${{ env.NAME }}) lint using actions | |
| - name: Coverage | |
| run: redrun coverage report | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@master | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: typos-action | |
| uses: crate-ci/[email protected] |