diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 77b0729..ff98c94 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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