remove test:ci #2418
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: Build/Cache Docker + E2E Tests | |
on: [push] | |
jobs: | |
build-and-test-e2e: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo and get submodules | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-${{ hashFiles('**/package-lock.json') }} | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: "v18.12.1" | |
cache: "yarn" | |
- name: enable Corepack | |
run: corepack enable | |
- name: install foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly-e15e33a07c0920189fc336391f538c3dad53da73 | |
- name: yarn install | |
run: | | |
yarn install --immutable | |
- name: yarn build | |
run: | | |
yarn build | |
- name: yarn test:e2e | |
run: | | |
yarn test:e2e |