Skip to content

Bump prettier from 2.8.8 to 3.1.1 #230

Bump prettier from 2.8.8 to 3.1.1

Bump prettier from 2.8.8 to 3.1.1 #230

Workflow file for this run

# 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: Node.js CI
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16, 18]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Installing Packages
run: yarn install
- name: Checking Formatting
run: yarn lint && yarn prettier-check
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Code Coverage
run: yarn coverage
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}