chore(release): 1.8.0 #266
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: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node: [16.x, 18.x, 20.x] | |
| prettier: ["3.0", "3.6"] | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v1 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install yarn | |
| run: npm i -g yarn | |
| - name: Install project dependencies | |
| run: yarn install | |
| - name: Install specific prettier version | |
| run: yarn add prettier@${{ matrix.prettier }} && yarn list --depth=0 --pattern "prettier" | |
| - name: Run tests | |
| run: yarn test |