chore: Update action versions and docker build (#3065)

This commit is contained in:
Lipis 2021-02-20 16:28:33 +02:00 committed by GitHub
parent 4bfcf105a5
commit baf9da2b83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 17 additions and 17 deletions

View File

@ -1,10 +1,10 @@
* *
!.env
!.eslintrc.json
!.npmrc
!.prettierrc
!package.json
!public/ !public/
!src/ !src/
!.npmrc
!.eslintrc.json
!.prettierrc
!package-lock.json
!package.json
!tsconfig.json !tsconfig.json
!.env !yarn.lock

View File

@ -9,5 +9,5 @@ jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- run: docker build -t excalidraw . - run: docker build -t excalidraw .

View File

@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Setup Node.js 14.x - name: Setup Node.js 14.x
uses: actions/setup-node@v1 uses: actions/setup-node@v2
with: with:
node-version: 14.x node-version: 14.x
- name: Install dependencies - name: Install dependencies

View File

@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Setup Node.js 14.x - name: Setup Node.js 14.x
uses: actions/setup-node@v1 uses: actions/setup-node@v2
with: with:
node-version: 14.x node-version: 14.x

View File

@ -15,7 +15,7 @@ jobs:
token: ${{ secrets.PUSH_TRANSLATIONS_COVERAGE_PAT }} token: ${{ secrets.PUSH_TRANSLATIONS_COVERAGE_PAT }}
- name: Setup Node.js 14.x - name: Setup Node.js 14.x
uses: actions/setup-node@v1 uses: actions/setup-node@v2
with: with:
node-version: 14.x node-version: 14.x

View File

@ -9,9 +9,9 @@ jobs:
release: release:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1.0.0 - uses: actions/checkout@v2
- name: Setup Node.js 14.x - name: Setup Node.js 14.x
uses: actions/setup-node@v1 uses: actions/setup-node@v2
with: with:
node-version: 14.x node-version: 14.x
- name: Install and build - name: Install and build

View File

@ -6,9 +6,9 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v2
- name: Setup Node.js 14.x - name: Setup Node.js 14.x
uses: actions/setup-node@v1 uses: actions/setup-node@v2
with: with:
node-version: 14.x node-version: 14.x
- name: Install and test - name: Install and test

View File

@ -18,7 +18,7 @@ services:
volumes: volumes:
- ./:/opt/node_app/app:delegated - ./:/opt/node_app/app:delegated
- ./package.json:/opt/node_app/package.json - ./package.json:/opt/node_app/package.json
- ./package-lock.json:/opt/node_app/package-lock.json - ./yarn.lock:/opt/node_app/yarn.lock
- notused:/opt/node_app/app/node_modules - notused:/opt/node_app/app/node_modules
volumes: volumes: