[build-tools] add logger to pod install
spawn call in eas/install_pods
custom build function
#1972
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: Run tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['18', '20', '22'] | |
name: Test with Node ${{ matrix.node }} on Linux | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Setup ncc | |
run: npm install -g @vercel/ncc | |
- run: yarn install --frozen-lockfile --check-files | |
- run: yarn build | |
- run: yarn test | |
- run: yarn lint --max-warnings=0 |