Skip to content

Commit

Permalink
Merge pull request #23 from cclauss/patch-1
Browse files Browse the repository at this point in the history
README.md example workflow: upgrade GitHub Actions
  • Loading branch information
bcomnes authored Apr 28, 2021
2 parents 99a5ca7 + 2ccee73 commit a4b1a49
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [14.x]

steps:
- uses: actions/checkout@v2.3.4
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.1.5
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: sudo apt-get install xvfb
Expand All @@ -26,4 +26,3 @@ jobs:
CI: true
- name: Cleanup xvfb pidx
uses: bcomnes/cleanup-xvfb@v1

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ jobs:

strategy:
matrix:
node-version: [12.x]
node-version: [14.x]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: sudo apt-get install xvfb
Expand Down

0 comments on commit a4b1a49

Please sign in to comment.