diff options
author | Saúl Ibarra Corretgé <s@saghul.net> | 2021-11-02 08:38:09 +0100 |
---|---|---|
committer | Saúl Ibarra Corretgé <s@saghul.net> | 2021-11-02 12:44:47 +0100 |
commit | 6a60a6d8cd64a4247654576ec2d7e0d34e05c6dd (patch) | |
tree | f38a9a37296a25851fc97ef452b8e36fa2fc356a /.github | |
parent | b4c239ac9f8424528e15d8a507a7216edaecd845 (diff) |
Update CI to use Node 16 / npm 8
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ab9eb7..025cf0f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Install dependencies run: sudo apt-get install libx11-dev zlib1g-dev libpng-dev libxtst-dev - name: Build it @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Build it env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -51,7 +51,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: '14.x' + node-version: '16.x' - name: Build it env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |