Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
rolandbernard committed Jul 26, 2021
1 parent c0a22d0 commit 97df4ab
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,19 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16.x]
node-version: ['16']

runs-on: ${{ matrix.os }}
name: Build on ${{ matrix.os }} with Node ${{ matrix.node_version }}
steps:
- name: Checkout current commit/branch/tag
uses: actions/checkout@v1
uses: actions/checkout@v2

- name: Setup Node ${{ matrix.node_version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node_version }}

- name: Show exact node version
run: node --version

- name: Show exact yarn version
run: yarn --version

- name: Install dependencies
run: yarn install

Expand Down

0 comments on commit 97df4ab

Please sign in to comment.