Skip to content

Commit

Permalink
Update publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-rodgers authored Apr 22, 2024
1 parent fab2f17 commit e26b1b5
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,21 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: main
# setup nodejs
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
cache-dependency-path: package-lock.json

# Run the npm install
- run: npm ci

# Runs a set of commands using the runners shell
- name: Test - not setup
run: echo this would be the tests

# Runs a single command using the runners shell
- name: Run publishing scripts
run: |
Expand Down

0 comments on commit e26b1b5

Please sign in to comment.