Skip to content

Commit

Permalink
fix: setup nodejs 14 for publishing job on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Mar 3, 2021
1 parent 3a0a75a commit 4cbb0de
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
branches: [main]

jobs:

test:
strategy:
matrix:
Expand All @@ -19,7 +20,9 @@ jobs:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn -s build

- run: yarn -s test

release-canary:
needs: [test]
runs-on: ubuntu-latest
Expand All @@ -28,6 +31,8 @@ jobs:
with:
fetch-depth: 0
- uses: actions/setup-node@v1
with:
node-version: 14.x
- name: Install Dependencies
run: yarn --frozen-lockfile
- name: Release Canary
Expand Down

0 comments on commit 4cbb0de

Please sign in to comment.