-
여러 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
결과
'github actions' 카테고리의 다른 글
docker container 에서 step 실행하기 (0) 2022.03.07 Matrix 를 이용해 다양한 환경을 한번에 실행하기 (0) 2022.03.07 Continue on Error & Timeout (0) 2022.03.06 github actions functions, if key and job status (0) 2022.03.04 github actions expressions & contexts (0) 2022.03.04