Ci/workflow test #2
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: Artifacts-Test | |
on: | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
- name: Use Node.js from .nvmrc | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Install dependencies | |
run: npm ci | |
- name: Build 🔧 | |
run: npm run build --if-present | |
- name: Archive production artifacts 🚀 | |
uses: actions/upload-artifact@v4 | |
with: | |
name: lib | |
path: lib | |
check: | |
name: check build | |
needs: [build] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node.Js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20.x' | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: lib | |
- name: List files | |
shell: bash | |
run: | | |
echo We are `pwd` | |
ls -la ./ |