[e2e magazine] Add data attributes to post templates #343
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: Tests (windows/macOS/ubuntu) | |
| on: push | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest, windows-latest] | |
| node: [20, 22, 24] | |
| name: Node ${{ matrix.node }} on ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: install dependencies | |
| run: npm ci | |
| - name: run tests | |
| shell: bash | |
| run: for i in {1..4}; do npm run test:ci || exit 1; done | |
| - name: Coveralls | |
| uses: coverallsapp/github-action@v2 |