Commit a999119a authored by Will Cory's avatar Will Cory

revert me: Just testing that the setup fix fixes it

parent 7be59599
......@@ -38,9 +38,36 @@ jobs:
fetch-depth: 0
ref: "develop"
- name: Setup
uses: ./.github/actions/setup
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.6.5
- name: Setup node 16.x
uses: actions/setup-node@v3
with:
node-version-file: .nvmrc
registry-url: https://registry.npmjs.org
cache: pnpm
- name: Get foundry version
id: foundry-version
shell: bash
run: echo ::set-output name=version::$(cat .foundryrc)
- name: Setup foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: $${ steps.foundry-version.outputs.version }
- name: Install node dependencies
shell: bash
run: pnpm install --frozen-lockfile
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
- run: |
echo "nx using following shas:"
echo "BASE: ${{ env.NX_BASE }}"
echo "HEAD: ${{ env.NX_HEAD }}"
shell: bash
# Makes a pr to publish the changesets that when
# merged will publish to npm
# see https://github.com/changesets/action
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment