github actions node version
-
여러 node 버전을 동시에 사용하기github actions 2022. 3. 7. 10:34
https://github.com/actions/setup-node 를 참고해 workflow 에서 다양한 node version 을 사용해 보자. 코드 name: Matrix on: push jobs: node-version: runs-on: ubuntu-latest steps: - name: Log node version run: node -v - uses: actions/setup-node@v1 with: node-version: '12' - name: Log node version run: node -v 결과 참고: https://www.udemy.com/course/github-actions