Upgrade: Bump actions/setup-node from 4.0.0 to 4.0.1 #157
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: 'Basic test' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
dependencies: 'svelte svelte-preprocess esbuild-svelte vue esbuild-plugin-vue3 sass node-sass-tilde-importer' | |
jobs: | |
pnpm: | |
name: Test with pnpm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Copy files | |
run: | | |
mkdir -p Build/Carbon.Pipeline/ | |
cp -n Test/pipeline.yaml ./ | |
cp -n Installer/Distribution/Defaults/{*,.*} ./ || true | |
cp -R {Lib,defaults.yaml,*.mjs,*.js} Build/Carbon.Pipeline/ | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: latest | |
- name: Setup node | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
cache: pnpm | |
- name: Install dependencies | |
run: | | |
node Build/Carbon.Pipeline/setPackageManager.js pnpm | |
pnpm install --no-frozen-lockfile | |
pnpm add ${{ env.dependencies }} | |
- name: Show config | |
run: pnpm showConfig | |
- name: Build files | |
run: pnpm build | |
yarn: | |
name: Test with yarn | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Copy files | |
run: | | |
mkdir -p Build/Carbon.Pipeline/ | |
cp -n Test/pipeline.yaml ./ | |
cp -n Installer/Distribution/Defaults/{*,.*} ./ || true | |
cp -R {Lib,defaults.yaml,*.mjs,*.js} Build/Carbon.Pipeline/ | |
- name: Setup node | |
uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
cache: yarn | |
- name: Install dependencies | |
run: | | |
node Build/Carbon.Pipeline/setPackageManager.js yarn | |
yarn set version stable | |
yarn install | |
yarn add ${{ env.dependencies }} | |
- name: Show config | |
run: yarn showConfig | |
- name: Build files | |
run: yarn build | |
npm: | |
name: Test with npm | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Copy files | |
run: | | |
mkdir -p Build/Carbon.Pipeline/ | |
cp -n Test/pipeline.yaml ./ | |
cp -n Installer/Distribution/Defaults/{*,.*} ./ || true | |
cp -R {Lib,defaults.yaml,*.mjs,*.js} Build/Carbon.Pipeline/ | |
- uses: actions/[email protected] | |
with: | |
node-version-file: .nvmrc | |
cache: npm | |
- name: Install dependencies | |
run: | | |
node Build/Carbon.Pipeline/setPackageManager.js npm | |
npm install | |
npm add ${{ env.dependencies }} | |
- name: Show config | |
run: npm run showConfig | |
- name: Build files | |
run: npm run build |