mirror of
https://github.com/ryanccn/attic-action.git
synced 2024-11-28 02:14:05 +00:00
88dbb4b600
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
41 lines
867 B
YAML
41 lines
867 B
YAML
name: "Test"
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
workflow_call:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
test-cache:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
cache: pnpm
|
|
cache-dependency-path: pnpm-lock.yaml
|
|
|
|
- name: Build
|
|
run: pnpm install && pnpm build
|
|
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v23
|
|
|
|
- name: Setup Attic Cache
|
|
uses: ./
|
|
with:
|
|
endpoint: ${{ secrets.ATTIC_ENDPOINT }}
|
|
cache: ${{ secrets.ATTIC_CACHE }}
|
|
token: ${{ secrets.ATTIC_TOKEN }}
|
|
|
|
- name: Build Nix Package
|
|
run: nix build --impure --show-trace -L .#test
|