This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
chore(deps-dev): bump @babel/traverse in /packages/ethereum/ethereum #4299
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
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Commits | |
on: [push] | |
jobs: | |
build: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [16.0.0, 16.x, 18.x, 20.x] | |
os: [ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- run: npm ci | |
- run: npm run tsc | |
- run: npm test | |
env: | |
FORCE_COLOR: 1 | |
INFURA_KEY: ${{ secrets.TEST_INFURA_KEY }} | |
build-all: | |
strategy: | |
fail-fast: false | |
matrix: | |
node: [16.0.0, 16.x, 18.x, 20.x] | |
os: [windows-2019, ubuntu-20.04, ubuntu-22.04, macos-12] | |
runs-on: ${{ matrix.os }} | |
if: github.ref == 'refs/heads/develop' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Add msbuild to PATH | |
# we need msbuild tools for the `bigint-buffer` module | |
if: startsWith(matrix.os, 'windows-') | |
uses: microsoft/[email protected] | |
- run: npm ci | |
- run: npm run tsc | |
- run: npm test | |
env: | |
FORCE_COLOR: 1 | |
INFURA_KEY: ${{ secrets.TEST_INFURA_KEY }} |