ci: Bump some of GitHub actions #1305
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: Inspect | |
on: push | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: './.node-version' | |
- name: Cache Deps | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
packages/*/node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles( 'yarn.lock' ) }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Fetch Deps | |
run: yarn install --frozen-lockfile | |
- name: Build | |
run: yarn build | |
- name: Upload Builds | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build | |
path: | | |
packages/*/lib/ | |
packages/*/types/ | |
lint: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: './.node-version' | |
- name: Cache Deps | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
packages/*/node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles( 'yarn.lock' ) }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Fetch Deps | |
run: yarn install --frozen-lockfile | |
- name: Download Builds | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: packages | |
- name: Lint | |
run: yarn lint | |
test: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: './.node-version' | |
- name: Cache Deps | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
packages/*/node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles( 'yarn.lock' ) }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Fetch Deps | |
run: yarn install --frozen-lockfile | |
- name: Download Builds | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: packages | |
- name: Test | |
run: yarn test | |
docs: | |
runs-on: ubuntu-latest | |
needs: build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: './.node-version' | |
- name: Cache Deps | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
packages/*/node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles( 'yarn.lock' ) }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Fetch Deps | |
run: yarn install --frozen-lockfile | |
- name: Download Builds | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: packages | |
- name: Build Docs | |
run: yarn docs | |
- name: Upload Docs | |
uses: actions/upload-artifact@v4 | |
with: | |
name: docs | |
path: | | |
packages/*/docs/ | |
gh-pages: | |
runs-on: ubuntu-latest | |
if: ${{ github.ref == 'refs/heads/release' }} | |
needs: | |
- build | |
- docs | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: './.node-version' | |
- name: Cache Deps | |
uses: actions/cache@v4 | |
with: | |
path: | | |
node_modules | |
packages/*/node_modules | |
key: ${{ runner.os }}-yarn-${{ hashFiles( 'yarn.lock' ) }} | |
restore-keys: | | |
${{ runner.os }}-yarn- | |
- name: Fetch Deps | |
run: yarn install --frozen-lockfile | |
- name: Download Builds | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: public/packages | |
- name: Download Docs | |
uses: actions/download-artifact@v4 | |
with: | |
name: docs | |
path: public/packages | |
- name: Copy Examples | |
run: | | |
for d in packages/*; do | |
if [[ -e "$d/examples" ]]; then | |
mkdir -p public/$d | |
cp -r $d/examples public/$d | |
fi | |
done | |
- name: Deploy to gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: public |