Revert "Manually fix snapshot to hopefully match github at https://gi… #675
This file contains 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.js CI - lint | |
on: [push] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [20.8.0] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.22.19 | |
- run: export PATH=$HOME/.yarn/bin:$PATH | |
- run: yarn | |
- run: yarn lint |