mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-08-22 18:09:06 +08:00

* fixing audit failures * replacing lerna bootstrap with npm command * audit fix for cache and tool-cache * updating tunnel * upgrading core packages * re-adding tunnel as prod dep * updating dependencies * updating exec deps * updating exec io package * . * Revert * updating packages * adding core as dep * updating learna config * updating lerna commands * Removing audit failing packages in cache + tool-cache * updating contribution bootstrap description * updating libraries * prettier lint * hiding stricter rules * updating prettier command * Removing unknown flag * Adding eslint prettier * ignoring sym links * updating ignore path * updating prettier rules * changing prettier + github ver * updating ts and ignores * Revert ts * Adding unknown ignores * downgrading lerna * . * adding nx * Adding lint auto lint rules * updating eslint ignore for glob packages * Adding subdirs to ignore * adding flag for ignore pattern in linter * Expanding ignore regex * Adding ignore rules * adding another ignore pattern to tsconfig eslint * adding ignore pattern to eslintrc * syncing package-json * updating traverse * . * test adding core and http client to base package * running npm ci * adding tsconfig paths * adding base URL * Adding explicit path to core and http-client * editing tsc call * updating artifact packages * force build * updating lock file version * updating lock file version * upgrading node version * Adding babel traverse back * fixing build issue * fixing typescript ver * updating package json * Adding ignore for artifact test * adding ignore to flags * unlink after test completes * cleanup * merge + package edit
91 lines
3.0 KiB
YAML
91 lines
3.0 KiB
YAML
name: cache-windows-bsd-unit-tests
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
|
|
- shell: bash
|
|
run: |
|
|
rm "C:\Program Files\Git\usr\bin\tar.exe"
|
|
|
|
- name: Set Node.js 16.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16.x
|
|
|
|
# In order to save & restore cache from a shell script, certain env variables need to be set that are only available in the
|
|
# node context. This runs a local action that gets and sets the necessary env variables that are needed
|
|
- name: Set env variables
|
|
uses: ./packages/cache/__tests__/__fixtures__/
|
|
|
|
# Need root node_modules because certain npm packages like jest are configured for the entire repository and it won't be possible
|
|
# without these to just compile the cache package
|
|
- name: Install root npm packages
|
|
run: npm ci
|
|
|
|
- name: Compile cache package
|
|
run: |
|
|
npm ci
|
|
npm run tsc
|
|
working-directory: packages/cache
|
|
|
|
- name: Generate files in working directory
|
|
shell: bash
|
|
run: packages/cache/__tests__/create-cache-files.sh ${{ runner.os }} test-cache
|
|
|
|
- name: Generate files outside working directory
|
|
shell: bash
|
|
run: packages/cache/__tests__/create-cache-files.sh ${{ runner.os }} ~/test-cache
|
|
|
|
# We're using node -e to call the functions directly available in the @actions/cache package
|
|
- name: Save cache using saveCache()
|
|
run: |
|
|
node -e "Promise.resolve(require('./packages/cache/lib/cache').saveCache(['test-cache','~/test-cache'],'test-${{ runner.os }}-${{ github.run_id }}'))"
|
|
|
|
- name: Delete cache folders before restoring
|
|
shell: bash
|
|
run: |
|
|
rm -rf test-cache
|
|
rm -rf ~/test-cache
|
|
|
|
- name: Restore cache using restoreCache() with http-client
|
|
run: |
|
|
node -e "Promise.resolve(require('./packages/cache/lib/cache').restoreCache(['test-cache','~/test-cache'],'test-${{ runner.os }}-${{ github.run_id }}',[],{useAzureSdk: false}))"
|
|
|
|
- name: Verify cache restored with http-client
|
|
shell: bash
|
|
run: |
|
|
packages/cache/__tests__/verify-cache-files.sh ${{ runner.os }} test-cache
|
|
packages/cache/__tests__/verify-cache-files.sh ${{ runner.os }} ~/test-cache
|
|
|
|
- name: Delete cache folders before restoring
|
|
shell: bash
|
|
run: |
|
|
rm -rf test-cache
|
|
rm -rf ~/test-cache
|
|
|
|
- name: Restore cache using restoreCache() with Azure SDK
|
|
run: |
|
|
node -e "Promise.resolve(require('./packages/cache/lib/cache').restoreCache(['test-cache','~/test-cache'],'test-${{ runner.os }}-${{ github.run_id }}'))"
|
|
|
|
- name: Verify cache restored with Azure SDK
|
|
shell: bash
|
|
run: |
|
|
packages/cache/__tests__/verify-cache-files.sh ${{ runner.os }} test-cache
|
|
packages/cache/__tests__/verify-cache-files.sh ${{ runner.os }} ~/test-cache
|