Bump actions/setup-node from 3 to 4 #404
Workflow file for this run
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: documentation | |
on: | |
pull_request: | |
branches: [develop] | |
push: | |
branches: [develop] | |
jobs: | |
checks: | |
if: github.event_name != 'push' | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: | | |
cd docs | |
yarn install | |
- name: Check lint | |
run: | | |
cd docs | |
yarn lint | |
- name: Test Build | |
run: | | |
cd docs | |
yarn build |