0
0
mirror of https://github.com/lipis/flag-icons.git synced 2024-11-21 10:28:56 +01:00

CI: Update multiple actions & make further use of nodejs lts version (#1216)

This commit is contained in:
xavier2k6 2024-02-04 16:19:55 +00:00 committed by GitHub
parent 6a8e63180d
commit bcf1c0be75
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 9 deletions

View File

@ -8,7 +8,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Setup Python - name: Setup Python
uses: actions/setup-python@v4 uses: actions/setup-python@v5
with: with:
python-version: "3.x" python-version: "3.x"
architecture: "x64" architecture: "x64"

View File

@ -6,9 +6,9 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- name: Setup Node.js LTS - name: Setup Node.js LTS
uses: actions/setup-node@v3 uses: actions/setup-node@v4
with: with:
node-version: "lts/*" node-version: "lts/*"
- name: Install and test - name: Install and test

View File

@ -11,10 +11,10 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/setup-node@v3 - uses: actions/setup-node@v4
with: with:
node-version: 18 node-version: "lts/*"
- run: yarn - run: yarn
- run: yarn test - run: yarn test
@ -22,10 +22,10 @@ jobs:
needs: build needs: build
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v4
- uses: actions/setup-node@v3 - uses: actions/setup-node@v4
with: with:
node-version: 18 node-version: "lts/*"
registry-url: https://registry.npmjs.org/ registry-url: https://registry.npmjs.org/
- run: yarn - run: yarn
- run: npm publish - run: npm publish