name: "Setup Node" description: | Sets up the node environment for tests, builds, etc. runs: using: "composite" steps: - uses: buildjet/setup-node@v3 with: node-version: 16.16.0 # See https://github.com/actions/setup-node#caching-global-packages-data cache: "yarn" cache-dependency-path: "site/yarn.lock" - name: Install node_modules shell: bash run: ./scripts/yarn_install.sh