Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mhuggins committed Oct 9, 2023
1 parent 8e08b65 commit 8e06c64
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Node.js CI

on:
push:
branches: [ $default-branch, github-actions ]
branches: [$default-branch, github-actions]
pull_request:
branches: [ $default-branch ]
branches: [$default-branch]

jobs:
build:
Expand All @@ -13,14 +13,14 @@ jobs:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn run lint
- run: yarn run format
- run: yarn run test
- run: yarn run build
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- run: yarn install --frozen-lockfile
- run: yarn run lint
- run: yarn run format
- run: yarn run test
- run: yarn run build

0 comments on commit 8e06c64

Please sign in to comment.