Skip to content
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.

Bump up Prettier to version 3.0.1 #82

Bump up Prettier to version 3.0.1

Bump up Prettier to version 3.0.1 #82

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- main
paths-ignore:
- "**.md"
pull_request:
branches:
- main
paths-ignore:
- "**.md"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
needs: []
runs-on: ubuntu-latest
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Node"
uses: actions/setup-node@v3
with:
node-version: "15"
- name: "Install Prettier"
run: npm install --global [email protected]
- name: "Check format"
run: make check
test:
needs: [lint]
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ "15", "16" ]
steps:
- name: "Set up GitHub Actions"
uses: actions/checkout@v3
- name: "Set up Node"
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: "Install dependencies"
run: npm install-clean
- name: "Run tests"
run: make test