File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : Checks
1+ name : Node.js Compatibility Checks
22on :
33 pull_request :
44 types : [opened, synchronize]
1111 - ' *.md'
1212
1313jobs :
14- checks :
14+ compatibility-check :
1515 runs-on : ubuntu-latest
1616 strategy :
1717 matrix :
1818 node-version : [16, 18, 20]
1919 steps :
20- - name : Checkout Repo
20+ - name : Checkout Repository
2121 uses : actions/checkout@v4
2222
2323 - name : Setup Node.js ${{ matrix.node-version }}
2424 uses : actions/setup-node@v4
2525 with :
2626 node-version : ${{ matrix.node-version }}
27-
28- - name : Setup and install deps
27+
28+ - name : Install Dependencies
2929 run : npm install
3030
31- - name : Lint check
31+ - name : Lint Check
3232 run : npm run lint
3333
34- - name : Prettier check
34+ - name : Prettier Check
3535 run : npm run format:check
36-
37- - name : Build
36+
37+ - name : Build Project
3838 run : npm run build
3939
40- - name : Test
41- run : npm run test
40+ - name : Run Tests
41+ run : npm run test
42+
43+ - name : Log Node.js Version
44+ run : echo "Tested on Node.js version ${{ matrix.node-version }}"
You can’t perform that action at this time.
0 commit comments